1
Fork 0
mirror of https://github.com/RYGhub/royalnet.git synced 2024-11-23 11:34:18 +00:00
royalnet/royalpack/commands/color.py
2021-04-19 19:39:01 +02:00

15 lines
314 B
Python

import royalnet.engineer as engi
@engi.TeleportingConversation
async def color(*, _msg: engi.Message, **__):
"""
Invia un colore in chat...?
"""
await _msg.reply(
text="I am sorry, unknown error occured during working with your request, Admin were notified"
)
__all__ = ("color",)