mirror of
https://github.com/owncast/owncast.git
synced 2024-11-23 21:28:29 +03:00
13 lines
335 B
TypeScript
13 lines
335 B
TypeScript
import { ClientConfig } from '../interfaces/client-config.model';
|
|
|
|
const ENDPOINT = `/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;
|