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
|
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,
|
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]
|