Files
gpustack-ui/src/atoms/system.ts
T
2026-02-06 14:27:05 +08:00

15 lines
418 B
TypeScript

import { atom } from 'jotai';
export interface SystemConfig {
grafana_url: string;
disable_builtin_observability: boolean;
debug: boolean;
grafana_model_dashboard_uid: string;
grafana_worker_dashboard_uid: string;
system_default_container_registry: string | null;
server_external_url: string | null;
showMonitoring?: boolean;
}
export const systemConfigAtom = atom<SystemConfig>({} as SystemConfig);