14 lines
185 B
Python
14 lines
185 B
Python
import asyncio
|
|
import bot
|
|
|
|
|
|
@bot.command('test')
|
|
@bot.is_admin
|
|
async def testy(self,channel,nick,msg):
|
|
await bot.message(self,channel,'hi there')
|
|
|
|
|
|
|
|
async def init(self):
|
|
pass
|
|
|