mirror of
https://github.com/APIParkLab/APIPark.git
synced 2026-06-14 20:41:15 +08:00
15 lines
221 B
Go
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"`
|
|
}
|