Bluesky app fork with some witchin' additions 馃挮
at 5ee667f307bc459ba53cdaabdad00a0ea1ee6846 12 lines 325 B view raw
1import {GEOLOCATION_URL} from '#/env' 2import {type Geolocation} from '#/geolocation/types' 3 4export const GEOLOCATION_SERVICE_URL = `${GEOLOCATION_URL}/geolocation` 5 6/** 7 * Default geolocation config. 8 */ 9export const FALLBACK_GEOLOCATION_SERVICE_RESPONSE: Geolocation = { 10 countryCode: undefined, 11 regionCode: undefined, 12}