this repo has no description
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}