mirror of
https://gitea.tendokyu.moe/Hay1tsme/artemis.git
synced 2026-02-04 14:47:29 +08:00
10 lines
250 B
Python
10 lines
250 B
Python
from .index import PokkenServlet
|
|
from .const import PokkenConstants
|
|
from .database import PokkenData
|
|
from .frontend import PokkenFrontend
|
|
|
|
index = PokkenServlet
|
|
database = PokkenData
|
|
game_codes = [PokkenConstants.GAME_CODE]
|
|
frontend = PokkenFrontend
|