1
Fork 0
mirror of https://github.com/RYGhub/royalnet.git synced 2025-03-31 04:10:31 +00:00
royalnet/royalnet/packs/common/stars/__init__.py
2019-11-06 15:54:08 +01:00

16 lines
407 B
Python

# Imports go here!
from .api_royalnet_version import ApiRoyalnetVersionStar
# Enter the PageStars of your Pack here!
available_page_stars = [
ApiRoyalnetVersionStar,
]
# Enter the ExceptionStars of your Pack here!
available_exception_stars = [
]
# Don't change this, it should automatically generate __all__
__all__ = [star.__name__ for star in [*available_page_stars, *available_exception_stars]]