mirror of
https://github.com/nonebot/nonebot2.git
synced 2025-07-27 16:21:28 +00:00
11 lines
254 B
Python
11 lines
254 B
Python
from command import CommandRegistry
|
|
from commands import core
|
|
|
|
__registry__ = cr = CommandRegistry()
|
|
|
|
|
|
@cr.register('test')
|
|
@cr.restrict(full_command_only=True, superuser_only=True)
|
|
def test(_, ctx_msg):
|
|
core.echo('Your are the superuser!', ctx_msg)
|