mirror of
https://github.com/a-bad-dev/irc2bash.git
synced 2026-06-09 17:42:40 +00:00
19 lines
314 B
Python
19 lines
314 B
Python
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"]
|
|
}
|