Files
bsky-social-app/src/geolocation/const.ts
T
2026-08-28 16:01:54 -05:00

14 lines
344 B
TypeScript

import {GEOLOCATION_URL} from '#/env'
import {type Geolocation} from '#/geolocation/types'
export const GEOLOCATION_SERVICE_URL = `${GEOLOCATION_URL}/geolocation`
/**
* Default geolocation config.
*/
export const FALLBACK_GEOLOCATION_SERVICE_RESPONSE: Geolocation = {
countryCode: undefined,
regionCode: undefined,
city: undefined,
}