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

17 lines
383 B
Python
Raw Normal View History

import royalnet.engineer as engi
2021-04-17 02:19:11 +00:00
import royalnet.engineer.conversation as c
2021-04-17 02:19:11 +00:00
@engi.TeleportingConversation
async def color(*, _sentry: engi.Sentry, _msg: engi.Message, **__):
"""
Invia un colore in chat...?
"""
2021-04-03 16:43:34 +00:00
await _msg.reply(
text="I am sorry, unknown error occured during working with your request, Admin were notified"
)
__all__ = ("color",)