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

22 lines
584 B
Python
Raw Normal View History

2019-11-11 09:56:08 +01: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 09:56:08 +01: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 09:56:08 +01:00
2019-12-03 19:12:33 +01:00
from .version import semantic as __version__
2019-11-11 09:56:08 +01:00
__all__ = [
"commands",
"tables",
"stars",
"events",
2019-11-11 09:56:08 +01:00
"available_commands",
"available_tables",
"available_page_stars",
"available_exception_stars",
"available_events",
2019-11-11 09:56:08 +01:00
]