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

22 lines
584 B
Python
Raw Normal View History

2019-11-11 08:56:08 +00:00
# This is a template Pack __init__. You can use this without changing anything in other packages too!
from . import commands, tables, stars, events
2019-11-11 08:56:08 +00:00
from .commands import available_commands
from .tables import available_tables
from .stars import available_page_stars, available_exception_stars
from .events import available_events
2019-11-11 08:56:08 +00:00
2019-12-03 18:12:33 +00:00
from .version import semantic as __version__
2019-11-11 08:56:08 +00:00
__all__ = [
"commands",
"tables",
"stars",
"events",
2019-11-11 08:56:08 +00:00
"available_commands",
"available_tables",
"available_page_stars",
"available_exception_stars",
"available_events",
2019-11-11 08:56:08 +00:00
]