Fixing some bugs and changing subscribe behaviour

This commit is contained in:
Fabian
2019-10-01 18:24:26 +02:00
parent 405e589328
commit 518d46f410
4 changed files with 15 additions and 4 deletions

View File

@ -1,5 +1,7 @@
import Logging from "@hibas123/nodelogging";
import * as dotenv from "dotenv";
dotenv.config()
interface IConfig {
port: number;
@ -15,6 +17,4 @@ const config: IConfig = {
dev: (process.env.DEV || "").toLowerCase() === "true"
}
dotenv.config()
export default config;