summary refs log tree commit diff homepage
path: root/src/Config.ts
diff options
context:
space:
mode:
authordestruc7i0n <destruc7i0n@users.noreply.github.com>2021-12-29 16:06:52 -0500
committerdestruc7i0n <destruc7i0n@users.noreply.github.com>2021-12-29 16:06:52 -0500
commit417dfa990f1b085251bee137a745b4752f3b5dab (patch)
treed71d20f51135a380bfbcda1a33889038bec87375 /src/Config.ts
parent3.1.0 (diff)
downloadshulker-417dfa990f1b085251bee137a745b4752f3b5dab.tar.gz
shulker-417dfa990f1b085251bee137a745b4752f3b5dab.zip
added config option for watchFile
Diffstat (limited to 'src/Config.ts')
-rw-r--r--src/Config.ts3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/Config.ts b/src/Config.ts
index ee24698..bcc45ef 100644
--- a/src/Config.ts
+++ b/src/Config.ts
@@ -1,5 +1,6 @@
 export interface Config {
   PORT: number
+  DEBUG: boolean
 
   USE_WEBHOOKS: boolean
   WEBHOOK_URL: string
@@ -18,6 +19,7 @@ export interface Config {
 
   IS_LOCAL_FILE: boolean
   LOCAL_FILE_PATH: string
+  FS_WATCH_FILE: boolean
 
   PATH_TO_MINECRAFT_SERVER_INSTALL?: string
   YOUR_URL?: string
@@ -33,7 +35,6 @@ export interface Config {
   REGEX_SERVER_PREFIX: string
   REGEX_MATCH_CHAT_MC: string
   REGEX_IGNORED_CHAT: string
-  DEBUG: boolean
 
   SERVER_NAME: string
   SERVER_IMAGE: string