2021-01-31 02:05:34 +00: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 21:31:26 +00:00
|
|
|
|
|
|
|
|
2021-01-31 02:05:34 +00:00
|
|
|
async def init(self):
|
2021-05-22 20:51:55 +00:00
|
|
|
pass
|
2021-01-31 02:05:34 +00:00
|
|
|
|