1
0
mirror of https://github.com/0O0o0oOoO00/Alas.git synced 2026-05-14 22:29:24 +08:00
Files
Alas/module/device/game_package.py
2022-04-19 01:00:07 +08:00

11 lines
251 B
Python

GAME_PACKAGE = {
'com.bilibili.azurlane': 'cn',
'com.YoStarEN.AzurLane': 'en',
'com.YoStarJP.AzurLane': 'jp',
'com.hkmanjuu.azurlane.gp': 'tw',
}
def package_to_server(package: str) -> str:
return GAME_PACKAGE.get(package, 'cn')