fix: group api

This commit is contained in:
tbphp
2025-07-03 21:18:43 +08:00
parent 34e7384539
commit 745c646530
5 changed files with 57 additions and 26 deletions

View File

@@ -14,6 +14,7 @@ export interface APIKey {
export interface Group {
id: number;
name: string;
nickname: string;
description: string;
channel_type: "openai" | "gemini";
config: string;
@@ -58,6 +59,6 @@ export interface DashboardStats {
}
export interface GroupRequestStat {
group_name: string;
group_nickname: string;
request_count: number;
}