mirror of
https://github.com/RYGhub/royalnet.git
synced 2024-11-23 19:44:20 +00:00
19 lines
620 B
Python
19 lines
620 B
Python
from ..utils import Command, Call
|
|
from ..database.tables import Royal, Telegram, Discord
|
|
|
|
|
|
class AuthorCommand(Command):
|
|
|
|
command_name = "author"
|
|
command_description = "Ottieni informazioni sull'autore di questa chiamata."
|
|
command_syntax = ""
|
|
|
|
require_alchemy_tables = {Royal, Telegram, Discord}
|
|
|
|
@classmethod
|
|
async def common(cls, call: Call):
|
|
author = await call.get_author()
|
|
if author is None:
|
|
await call.reply(f"☁️ L'autore di questa chiamata è sconosciuto.")
|
|
return
|
|
await call.reply(f"🌞 {str(author)} è l'autore di questa chiamata.")
|