Files
APIPark/module/ai-local/dto/input.go
T
2025-02-14 15:34:41 +08:00

15 lines
221 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"`
Team string `json:"team"`
}