forked from
jollywhoppers.com/witchsky.app
Bluesky app fork with some witchin' additions 馃挮
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}