1
Fork 0
mirror of https://github.com/RYGhub/royalnet.git synced 2025-02-17 10:53:57 +00:00
royalnet/royalpack/commands/color.py

16 lines
326 B
Python
Raw Normal View History

import royalnet.engineer as engi
2021-04-17 04:19:11 +02:00
@engi.TeleportingConversation
2021-04-19 05:26:20 +02:00
async def color(*, _msg: engi.Message, **__):
"""
Invia un colore in chat...?
"""
2021-04-19 19:39:01 +02:00
2021-04-03 18:43:34 +02:00
await _msg.reply(
2021-04-20 02:43:48 +02:00
text="\uE011I am sorry, unknown error occured during working with your request, Admin were notified\uE001"
)
__all__ = ("color",)