mirror of
https://github.com/RYGhub/royalnet.git
synced 2024-11-23 19:44:20 +00:00
10 lines
No EOL
280 B
Python
10 lines
No EOL
280 B
Python
from royalnet.commands import *
|
|
|
|
|
|
class AhnonlosoioCommand(Command):
|
|
name: str = "ahnonlosoio"
|
|
|
|
description: str = "Ah, non lo so io!"
|
|
|
|
async def run(self, args: CommandArgs, data: CommandData) -> None:
|
|
await data.reply(r"🤷 Ah, non lo so io! ¯\_(ツ)_/¯") |