1
Fork 0
mirror of https://github.com/RYGhub/royalnet.git synced 2024-11-27 13:34:28 +00:00
royalnet/{packname}/__init__.py
2019-11-11 10:16:39 +01:00

17 lines
456 B
Python

# This is a template Pack __init__. You can use this without changing anything in other packages too!
from . import commands, tables, stars
from .commands import available_commands
from .tables import available_tables
from .stars import available_page_stars, available_exception_stars
__all__ = [
"commands",
"tables",
"stars",
"available_commands",
"available_tables",
"available_page_stars",
"available_exception_stars",
]