1
Fork 0
mirror of https://github.com/RYGhub/royalnet.git synced 2025-03-29 19:30:31 +00:00
royalnet/royalnet/packs/common/tables/__init__.py

14 lines
335 B
Python

# Imports go here!
from .users import User
from .telegram import Telegram
from .discord import Discord
# Enter the tables of your Pack here!
available_tables = [
User,
Telegram,
Discord
]
# Don't change this, it should automatically generate __all__
__all__ = [table.__class__.__qualname__ for table in available_tables]