mirror of
https://github.com/RYGhub/royalnet.git
synced 2024-11-24 12:04:20 +00:00
12 lines
267 B
Python
12 lines
267 B
Python
|
from typing import *
|
||
|
from royalnet.commands import *
|
||
|
|
||
|
|
||
|
class PmotsCommand(Command):
|
||
|
name: str = "pmots"
|
||
|
|
||
|
description: str = "Confondi Proto!"
|
||
|
|
||
|
async def run(self, args: CommandArgs, data: CommandData) -> None:
|
||
|
await data.reply("👣 pmots pmots")
|