mirror of
https://github.com/redphx/better-xcloud.git
synced 2025-08-06 05:08:26 +02:00
16 lines
318 B
TypeScript
16 lines
318 B
TypeScript
import { t } from "@/utils/translation"
|
|
|
|
export const BypassServers = {
|
|
'br': t('brazil'),
|
|
'jp': t('japan'),
|
|
'pl': t('poland'),
|
|
'us': t('united-states'),
|
|
}
|
|
|
|
export const BypassServerIps = {
|
|
'br': '169.150.198.66',
|
|
'jp': '138.199.21.239',
|
|
'pl': '45.134.212.66',
|
|
'us': '143.244.47.65',
|
|
}
|