2019-11-11 09:56:08 +01: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 02:51:55 +01:00
|
|
|
from .fiorygi import Fiorygi
|
2020-01-20 22:47:45 +01:00
|
|
|
from .steam import Steam
|
2020-01-24 01:07:11 +01:00
|
|
|
from .dota import Dota
|
2020-01-31 01:47:44 +01:00
|
|
|
from .fiorygitransactions import FiorygiTransaction
|
2020-03-18 18:06:15 +01:00
|
|
|
from .brawlhalla import Brawlhalla
|
2020-03-23 22:38:37 +01:00
|
|
|
from .polls import Poll
|
|
|
|
from .pollcomments import PollComment
|
|
|
|
from .pollvotes import PollVote
|
2020-03-24 00:02:55 +01:00
|
|
|
from .brawlhalladuos import BrawlhallaDuo
|
2020-04-08 22:00:57 +02:00
|
|
|
from .mmevents import MMEvent
|
|
|
|
from .mmresponse import MMResponse
|
2020-04-27 03:12:01 +02:00
|
|
|
from .cvstats import Cvstats
|
2020-05-21 15:16:03 +02:00
|
|
|
from .treasure import Treasure
|
2019-11-11 09:56:08 +01:00
|
|
|
|
|
|
|
# Enter the tables of your Pack here!
|
|
|
|
available_tables = [
|
|
|
|
Diario,
|
|
|
|
WikiPage,
|
|
|
|
Bio,
|
|
|
|
Reminder,
|
|
|
|
TriviaScore,
|
2019-12-30 02:51:55 +01:00
|
|
|
LeagueOfLegends,
|
|
|
|
Fiorygi,
|
2020-01-20 22:47:45 +01:00
|
|
|
Steam,
|
2020-01-24 01:07:11 +01:00
|
|
|
Dota,
|
2020-01-31 01:47:44 +01:00
|
|
|
FiorygiTransaction,
|
2020-03-18 18:06:15 +01:00
|
|
|
Brawlhalla,
|
2020-03-23 22:38:37 +01:00
|
|
|
Poll,
|
|
|
|
PollComment,
|
|
|
|
PollVote,
|
2020-03-24 00:02:55 +01:00
|
|
|
BrawlhallaDuo,
|
2020-04-08 22:00:57 +02:00
|
|
|
MMEvent,
|
|
|
|
MMResponse,
|
2020-04-27 03:12:01 +02:00
|
|
|
Cvstats,
|
2020-05-21 15:16:03 +02:00
|
|
|
Treasure,
|
2019-11-11 09:56:08 +01:00
|
|
|
]
|
|
|
|
|
|
|
|
# Don't change this, it should automatically generate __all__
|
|
|
|
__all__ = [table.__name__ for table in available_tables]
|