mirror of
https://github.com/RYGhub/royalnet.git
synced 2024-11-24 03:54:20 +00:00
11 lines
281 B
Python
11 lines
281 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! ¯\_(ツ)_/¯")
|