2024-01-12 23:03:11 +00:00
|
|
|
from .index import ChuniServlet
|
|
|
|
from .const import ChuniConstants
|
|
|
|
from .database import ChuniData
|
|
|
|
from .read import ChuniReader
|
|
|
|
from .frontend import ChuniFrontend
|
2023-02-17 06:02:21 +00:00
|
|
|
|
|
|
|
index = ChuniServlet
|
|
|
|
database = ChuniData
|
|
|
|
reader = ChuniReader
|
2024-01-12 23:03:11 +00:00
|
|
|
frontend = ChuniFrontend
|
2023-12-13 06:09:02 +00:00
|
|
|
game_codes = [ChuniConstants.GAME_CODE, ChuniConstants.GAME_CODE_NEW, ChuniConstants.GAME_CODE_INT]
|