Add configuration file support

This commit is contained in:
Jordyn 2026-03-14 03:42:04 -05:00
commit 4fab129a1e
2 changed files with 29 additions and 7 deletions

19
skel_config.py Normal file
View file

@ -0,0 +1,19 @@
user = {
"realname": "setme",
"nickname": "setme",
"channels": ["##join", "##these", "##channels"]
}
server = {
"ip": "irc.serv.net",
"port": 6667,
"sock_timeout": 60,
"sock_sendbuf": 512,
"sock_recvbuf": 512
}
bot = {
"command_prefix": "$!",
"bot_prefix": "$$",
"opper_nicknames": ["nicknamehere"]
}