mirror of
https://github.com/ckaczor/HomeMonitor.git
synced 2026-01-14 01:25:38 -05:00
8 lines
157 B
TypeScript
8 lines
157 B
TypeScript
import config from './config.json';
|
|
|
|
export default class Environment {
|
|
public static getUrlPrefix(): string {
|
|
return config.API_PREFIX;
|
|
}
|
|
}
|