relay/config.py

20 lines
312 B
Python
Raw Normal View History

2021-03-22 06:59:51 +00:00
# for relay.py
SERVERS = {
"freenode": {
"connection": ("chat.freenode.net", 6697, True),
"chans": ["#hedy", "#hedy2"],
},
"tilde": {
"connection": ("irc.tilde.chat", 6697, True),
"chans": ["##hedy"]
},
}
NICKNAME = 'hbot'
2021-03-29 13:03:29 +00:00
ADMINS=['hedy', 'hedyli']
2021-03-22 06:59:51 +00:00
2021-03-29 13:03:29 +00:00
NOPING=[]