feat: add metrics on servicelist

This commit is contained in:
Qiuxia Fan
2022-01-24 14:03:11 +08:00
parent 28281e5bd4
commit 8a2eeae315
2 changed files with 71 additions and 6 deletions

View File

@@ -37,3 +37,13 @@ export type Endpoint = {
label: string;
value: string;
};
export type Service = {
id: string;
value: string;
label: string;
group: string;
normal: boolean;
layers: string[];
shortName: string;
};