1
Fork 0
mirror of https://github.com/RYGhub/royalnet.git synced 2025-02-25 14:15:04 +00:00
royalnet/rpgpack/stars/__init__.py

11 lines
296 B
Python
Raw Normal View History

2019-11-11 10:16:39 +01:00
# Imports go here!
2020-03-14 01:57:29 +01:00
from .api_dnd_character_get import ApiDndCharacterGetStar
2019-11-11 10:16:39 +01:00
# Enter the PageStars of your Pack here!
available_page_stars = [
2020-03-14 01:57:29 +01:00
ApiDndCharacterGetStar,
2019-11-11 10:16:39 +01:00
]
# Don't change this, it should automatically generate __all__
2020-03-14 01:57:29 +01:00
__all__ = [star.__name__ for star in available_page_stars]