artemis/titles/pokken/__init__.py

10 lines
250 B
Python
Raw Normal View History

2023-04-11 15:40:05 +00:00
from .index import PokkenServlet
from .const import PokkenConstants
from .database import PokkenData
from .frontend import PokkenFrontend
2023-02-17 07:09:26 +00:00
index = PokkenServlet
database = PokkenData
2023-02-17 07:09:26 +00:00
game_codes = [PokkenConstants.GAME_CODE]
2023-04-11 15:40:05 +00:00
frontend = PokkenFrontend