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
|
2019-12-30 01:51:55 +00:00
|
|
|
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
|
2019-11-11 08:56:08 +00:00
|
|
|
|
|
|
|
# Enter the tables of your Pack here!
|
|
|
|
available_tables = [
|
|
|
|
Diario,
|
|
|
|
WikiPage,
|
|
|
|
Bio,
|
|
|
|
Reminder,
|
|
|
|
TriviaScore,
|
2019-12-30 01:51:55 +00:00
|
|
|
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,
|
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]
|