Files
2026-03-03 15:39:23 +08:00

19 lines
338 B
Go

package response
import (
"git.echol.cn/loser/ai_proxy/server/model/system"
)
type SysAPIResponse struct {
Api system.SysApi `json:"api"`
}
type SysAPIListResponse struct {
Apis []system.SysApi `json:"apis"`
}
type SysSyncApis struct {
NewApis []system.SysApi `json:"newApis"`
DeleteApis []system.SysApi `json:"deleteApis"`
}