13 lines
344 B
TypeScript
13 lines
344 B
TypeScript
|
import { ClientConfig } from '../models/ClientConfig';
|
||
|
const ENDPOINT = `http://localhost:8080/api/config`;
|
||
|
|
||
|
class ClientConfigService {
|
||
|
public static async getConfig(): Promise<ClientConfig> {
|
||
|
const response = await fetch(ENDPOINT);
|
||
|
const status = await response.json();
|
||
|
return status;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
export default ClientConfigService;
|