1
Fork 0
mirror of https://github.com/RYGhub/royalnet.git synced 2024-11-24 03:54:20 +00:00
royalnet/royalpack/events/__init__.py

13 lines
300 B
Python
Raw Normal View History

# Imports go here!
2019-11-28 16:54:36 +00:00
from .discord_cv import DiscordCvEvent
# Enter the commands of your Pack here!
available_events = [
2019-11-28 16:54:36 +00:00
DiscordCvEvent,
]
# noinspection PyUnreachableCode
# Don't change this, it should automatically generate __all__
__all__ = [command.__name__ for command in available_events]