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