min/modules/test.py

17 lines
228 B
Python
Raw Normal View History

2021-01-30 21:05:34 -05:00
import asyncio
import bot
@bot.command('test')
@bot.is_admin
async def testy(self,channel,nick,msg):
await bot.message(self,'test',channel,'hi there')
2021-01-31 16:31:26 -05:00
2021-01-30 21:05:34 -05:00
async def init(self):
await self.send_raw("join #bots")