diff options
author | TheArcaneBrony <myrainbowdash949@gmail.com> | 2022-08-10 02:34:53 +0200 |
---|---|---|
committer | TheArcaneBrony <myrainbowdash949@gmail.com> | 2022-08-10 02:35:42 +0200 |
commit | 56322bc2631a36f424ee12fe91df03d3f7989202 (patch) | |
tree | 36869222f599ccc61899dfdd0e764e0853e704f7 | |
parent | fix(util): OrmUtils (diff) | |
download | server-56322bc2631a36f424ee12fe91df03d3f7989202.tar.xz |
Don't use default config as config.
-rw-r--r-- | util/src/util/Config.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/util/src/util/Config.ts b/util/src/util/Config.ts index 587e9235..97a73858 100644 --- a/util/src/util/Config.ts +++ b/util/src/util/Config.ts @@ -5,7 +5,7 @@ import fs from "fs"; // TODO: yaml instead of json // const overridePath = path.join(process.cwd(), "config.json"); -let config: ConfigValue = DefaultConfigOptions; +let config: ConfigValue; let pairs: ConfigEntity[]; // TODO: use events to inform about config updates |