1
Fork 0
mirror of https://github.com/RYGhub/royalnet.git synced 2024-11-23 19:44:20 +00:00
royalnet/royalpack/tables/__init__.py

51 lines
1.2 KiB
Python
Raw Permalink Normal View History

2019-11-11 08:56:08 +00:00
# Imports go here!
from .diario import Diario
from .wikipages import WikiPage
from .bios import Bio
from .reminders import Reminder
from .triviascores import TriviaScore
from .leagueoflegends import LeagueOfLegends
from .fiorygi import Fiorygi
2020-01-20 21:47:45 +00:00
from .steam import Steam
2020-01-24 00:07:11 +00:00
from .dota import Dota
2020-01-31 00:47:44 +00:00
from .fiorygitransactions import FiorygiTransaction
2020-03-18 17:06:15 +00:00
from .brawlhalla import Brawlhalla
2020-03-23 21:38:37 +00:00
from .polls import Poll
from .pollcomments import PollComment
from .pollvotes import PollVote
2020-03-23 23:02:55 +00:00
from .brawlhalladuos import BrawlhallaDuo
2020-04-08 20:00:57 +00:00
from .mmevents import MMEvent
from .mmresponse import MMResponse
2020-04-27 01:12:01 +00:00
from .cvstats import Cvstats
2020-05-21 13:16:03 +00:00
from .treasure import Treasure
2020-07-21 23:39:04 +00:00
from .osu import Osu
2020-09-24 01:20:35 +00:00
from ..halloween2020.trionfistatus import TrionfiStatus
2019-11-11 08:56:08 +00:00
# Enter the tables of your Pack here!
available_tables = [
Diario,
WikiPage,
Bio,
Reminder,
TriviaScore,
LeagueOfLegends,
Fiorygi,
2020-01-20 21:47:45 +00:00
Steam,
2020-01-24 00:07:11 +00:00
Dota,
2020-01-31 00:47:44 +00:00
FiorygiTransaction,
2020-03-18 17:06:15 +00:00
Brawlhalla,
2020-03-23 21:38:37 +00:00
Poll,
PollComment,
PollVote,
2020-03-23 23:02:55 +00:00
BrawlhallaDuo,
2020-04-08 20:00:57 +00:00
MMEvent,
MMResponse,
2020-04-27 01:12:01 +00:00
Cvstats,
2020-05-21 13:16:03 +00:00
Treasure,
2020-07-21 23:39:04 +00:00
Osu,
2020-09-24 01:20:35 +00:00
TrionfiStatus,
2019-11-11 08:56:08 +00:00
]
# Don't change this, it should automatically generate __all__
__all__ = [table.__name__ for table in available_tables]