Amba-Agent-App/lib/api/baseUrls.ts
2026-01-16 00:22:35 +03:00

10 lines
301 B
TypeScript

export const BASE_URLS = {
core: "https://api.ambapays.com",
events: "https://events.api.ambapays.com",
referral: "https://referralapi-fclnigvupq-uc.a.run.app",
} as const;
export type BaseUrlKey = keyof typeof BASE_URLS;
export const getBaseUrl = (key: BaseUrlKey): string => BASE_URLS[key];