mirror of
https://github.com/RYGhub/royalnet.git
synced 2024-11-23 19:44:20 +00:00
14 lines
331 B
Python
14 lines
331 B
Python
from typing import *
|
|
from royalnet.commands import *
|
|
from royalnet.utils import *
|
|
|
|
# TODO: delete this file!
|
|
|
|
|
|
class ExampleCommand(Command):
|
|
name: str = "example"
|
|
|
|
description: str = "Say Hello to the world!"
|
|
|
|
async def run(self, args: CommandArgs, data: CommandData) -> None:
|
|
await data.reply("Hello world!")
|