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!
|
|
|
|
|
2019-11-28 01:30:40 +00:00
|
|
|
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
|
2019-11-28 01:30:40 +00:00
|
|
|
from .events import available_events
|
2019-11-11 08:56:08 +00:00
|
|
|
|
|
|
|
__all__ = [
|
|
|
|
"commands",
|
|
|
|
"tables",
|
|
|
|
"stars",
|
2019-11-28 01:30:40 +00:00
|
|
|
"events",
|
2019-11-11 08:56:08 +00:00
|
|
|
"available_commands",
|
|
|
|
"available_tables",
|
|
|
|
"available_page_stars",
|
|
|
|
"available_exception_stars",
|
2019-11-28 01:30:40 +00:00
|
|
|
"available_events",
|
2019-11-11 08:56:08 +00:00
|
|
|
]
|