chore: backend api

This commit is contained in:
jialin
2026-01-30 20:48:55 +08:00
committed by Lawrence Li
parent af6f90c228
commit a2be7f6b36
22 changed files with 11829 additions and 9118 deletions
+8 -1
View File
@@ -47,6 +47,13 @@ export const workerListAtom = atom<
}[]
>([]);
export const backendOptionsAtom = atom<BackendOption[]>([]);
interface BackGroupOption {
label: string;
value: string;
title?: string;
children: BackendOption[];
}
export const backendOptionsAtom = atom<BackGroupOption[]>([]);
export const resourceOverviewAtom = atom<Record<string, any>>({});