min/modules/test.py

13 lines
188 B
Python
Raw Normal View History

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