mirror of
https://gitee.com/sui-feng-cb/AzurLaneAutoScript1
synced 2026-03-09 18:39:04 +08:00
11 lines
251 B
Python
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')
|