mirror of
https://github.com/owncast/owncast.git
synced 2024-11-22 12:49:37 +03:00
12 lines
355 B
TypeScript
12 lines
355 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;
|