diff options
author | destruc7i0n <destruc7i0n@users.noreply.github.com> | 2021-12-29 16:39:46 -0500 |
---|---|---|
committer | destruc7i0n <destruc7i0n@users.noreply.github.com> | 2021-12-29 16:39:46 -0500 |
commit | a04d39a3cbf10e7335889615a36a78827857b566 (patch) | |
tree | ab132aeeb0e931e1131c1a46182a9cb5a7e882e5 /src/Shulker.ts | |
parent | added config option for watchFile (diff) | |
download | shulker-a04d39a3cbf10e7335889615a36a78827857b566.tar.gz shulker-a04d39a3cbf10e7335889615a36a78827857b566.zip |
escape unicode characters
closes #76
Diffstat (limited to '')
-rw-r--r-- | src/Shulker.ts | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/src/Shulker.ts b/src/Shulker.ts index df635ad..220cd03 100644 --- a/src/Shulker.ts +++ b/src/Shulker.ts @@ -1,19 +1,15 @@ -import path from 'path' import fs from 'fs' import DiscordClient from './Discord' import Handler, { LogLine } from './MinecraftHandler' -import { Config } from './Config' +import type { Config } from './Config' class Shulker { config: Config discordClient: DiscordClient handler: Handler - constructor() { - } - loadConfig () { const configFile = process.argv.length > 2 ? process.argv[2] : './config.json' if (!fs.existsSync(configFile)) { |