1
Fork 0
mirror of https://github.com/RYGhub/royalnet.git synced 2024-11-23 19:44:20 +00:00
royalnet/keipack/__init__.py

18 lines
475 B
Python
Raw Normal View History

2019-11-11 11:23:34 +00:00
# This is a template Pack __init__. You can use this without changing anything in other packages too!
2019-11-11 12:40:26 +00:00
from . import commands, tables, stars, utils
2019-11-11 11:23:34 +00:00
from .commands import available_commands
from .tables import available_tables
from .stars import available_page_stars, available_exception_stars
__all__ = [
"commands",
"tables",
"stars",
2019-11-11 12:40:26 +00:00
"utils",
2019-11-11 11:23:34 +00:00
"available_commands",
"available_tables",
"available_page_stars",
"available_exception_stars",
]