mirror of
https://github.com/RYGhub/royalnet.git
synced 2024-11-23 19:44:20 +00:00
19 lines
539 B
Python
19 lines
539 B
Python
# This is a template Pack __init__. You can use this without changing anything in other packages too!
|
|
|
|
from . import commands, tables, stars, events
|
|
from .commands import available_commands
|
|
from .events import available_events
|
|
from .tables import available_tables
|
|
from .stars import available_page_stars, available_exception_stars
|
|
|
|
__all__ = [
|
|
"commands",
|
|
"tables",
|
|
"stars",
|
|
"version",
|
|
"available_commands",
|
|
"available_tables",
|
|
"available_page_stars",
|
|
"available_exception_stars",
|
|
"available_events",
|
|
]
|