min/modules/channels.py
2020-04-05 19:59:15 -04:00

12 lines
163 B
Python

async def init(self):
self.chansjoin = ['#bots']
print('joining channels', ' '.join(self.chansjoin))
for i in self.chansjoin:
await self.join(i)