feat: dashboard link

This commit is contained in:
hamster1963
2024-11-24 12:08:32 +08:00
parent 5364d5cdb5
commit 97087fe67d
6 changed files with 48 additions and 9 deletions

View File

@@ -58,3 +58,14 @@ export interface ServerGroup {
};
servers: number[];
}
export interface LoginUserResponse {
success: boolean;
data: {
id: number;
username: string;
password: string;
created_at: string;
updated_at: string;
};
}