Files
APIPark/module/ai-local/dto/input.go
2025-02-17 16:12:21 +08:00

16 lines
258 B
Go

package ai_local_dto
type Update struct {
Disable bool `json:"disable"`
}
type CancelDeploy struct {
Model string `json:"model"`
}
type DeployInput struct {
Model string `json:"model"`
Service string `json:"service"`
Team string `json:"team"`
}