This repository has been archived on 2021-03-28. You can view files and clone it, but cannot push or open issues/pull-requests.
|
from frank import Module, command, default, daemon
|
|
|
|
|
|
class ModuleTester(Module):
|
|
PREFIX = 'tester'
|
|
|
|
@command('test')
|
|
async def test(cmd, author, channel, mid):
|
|
pass
|
|
|
|
@default()
|
|
async def test2(prefix, cmd, author, channel, mid):
|
|
pass
|
|
|
|
@daemon()
|
|
async def test_daemon(self):
|
|
pass
|