1
0
mirror of synced 2025-01-19 22:32:46 +01:00
artemis/titles/pokken/__init__.py

11 lines
277 B
Python
Raw Normal View History

2023-04-11 11:40:05 -04:00
from .index import PokkenServlet
from .const import PokkenConstants
from .database import PokkenData
from .frontend import PokkenFrontend
2023-02-17 02:09:26 -05:00
index = PokkenServlet
database = PokkenData
2023-02-17 02:09:26 -05:00
game_codes = [PokkenConstants.GAME_CODE]
2023-03-09 11:38:58 -05:00
current_schema_version = 1
2023-04-11 11:40:05 -04:00
frontend = PokkenFrontend