mirror of
https://github.com/redphx/better-xcloud.git
synced 2025-06-08 16:47:19 +02:00
18 lines
412 B
TypeScript
18 lines
412 B
TypeScript
import { t } from "@/utils/translation"
|
|
|
|
export const BypassServers = {
|
|
'br': t('brazil'),
|
|
'jp': t('japan'),
|
|
'kr': t('korea'),
|
|
'pl': t('poland'),
|
|
'us': t('united-states'),
|
|
}
|
|
|
|
export const BypassServerIps: Record<keyof typeof BypassServers, string> = {
|
|
'br': '169.150.198.66',
|
|
'kr': '121.125.60.151',
|
|
'jp': '138.199.21.239',
|
|
'pl': '45.134.212.66',
|
|
'us': '143.244.47.65',
|
|
}
|