diff options
Diffstat (limited to 'config.py')
-rw-r--r-- | config.py | 17 |
1 files changed, 0 insertions, 17 deletions
diff --git a/config.py b/config.py deleted file mode 100644 index d0dc061..0000000 --- a/config.py +++ /dev/null @@ -1,17 +0,0 @@ -# -*- coding: utf-8 -*- -import json - -with open("config.json", "r", encoding="utf-8") as file: - config = json.load(file) - - -class Config(object): - # connection arguments - HOST = config['host'] - PORT = config['port'] - USER = config['user'] - PW = config['password'] - SID = config['server_id'] - - # assignment settings - GID = config['gid'] |