mirror of
https://github.com/datahub-project/datahub.git
synced 2025-07-23 01:22:00 +00:00
15 lines
290 B
TypeScript
15 lines
290 B
TypeScript
/**
|
|
* Defines the root path for wherehows front-end api requests
|
|
* @type {string}
|
|
*/
|
|
export const ApiRoot = '/api/v1';
|
|
|
|
/**
|
|
* Defines the literal possible string enum values for the an api response status
|
|
* @type {string}
|
|
*/
|
|
export enum ApiStatus {
|
|
OK = 'ok',
|
|
FAILED = 'failed'
|
|
}
|