mirror of
https://github.com/Spythere/stacjownik.git
synced 2026-05-03 05:18:11 +00:00
20 lines
309 B
TypeScript
20 lines
309 B
TypeScript
export enum ServerRegion {
|
|
'eu' = 'PL1',
|
|
'cae' = 'PL2',
|
|
'usw' = 'DE',
|
|
'us' = 'CZE',
|
|
'ru' = 'ENG'
|
|
}
|
|
|
|
export const regions: Record<string, string> = {
|
|
eu: 'PL1',
|
|
cae: 'PL2',
|
|
usw: 'DE',
|
|
us: 'CZE',
|
|
ru: 'ENG'
|
|
};
|
|
|
|
export function getRegionNameById(id: string) {
|
|
return regions[id] ?? 'PL1';
|
|
}
|