1
0
Fork 0

Update config.py

This commit is contained in:
Eric Lay 2025-05-11 17:52:49 -05:00
parent 47113b1c75
commit 28a7ee7727
1 changed files with 4 additions and 0 deletions

View File

@ -19,6 +19,10 @@ except Exception as e:
SERVER = config["irc"]["server"] SERVER = config["irc"]["server"]
PORT = config["irc"]["port"] PORT = config["irc"]["port"]
BOTNICK = config["irc"]["botnick"] BOTNICK = config["irc"]["botnick"]
NICKSERV_USER = config["irc"]["nickserv_user"]
NICKSERV_PASS = config["irc"]["nickserv_pass"]
OPER_USER = config["irc"]["oper_user"]
OPER_PASS = config["irc"]["oper_pass"]
# Channel setups # Channel setups
LOBBY_CHANNEL = config["irc"]["lobby_chat"] LOBBY_CHANNEL = config["irc"]["lobby_chat"]