util/config.py

11 lines
262 B
Python
Raw Normal View History

2021-12-19 09:05:42 +00:00
#!/usr/bin/python3
from fileread import fileload
DebugLVL = 442
HOST = fileload('conf/host')
PORT = int(fileload('conf/port'))
NICK = fileload('conf/nick')
REALNAME = fileload('conf/realname')
SERVICES_PW = fileload('conf/pw')
CHANNELS = fileload('conf/chans')