mirror of
https://github.com/owncast/owncast.git
synced 2024-11-27 09:45:36 +03:00
13 lines
356 B
TypeScript
13 lines
356 B
TypeScript
import { ClientConfig } from '../interfaces/client-config.model';
|
|
|
|
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;
|