2
0
mirror of https://github.com/acepanel/panel.git synced 2026-02-05 00:39:32 +08:00
Files
panel/internal/http/request/container_image.go
2024-10-13 23:43:59 +08:00

13 lines
327 B
Go

package request
type ContainerImageID struct {
ID string `json:"id" form:"id"`
}
type ContainerImagePull struct {
Name string `form:"name" json:"name" validate:"required"`
Auth bool `form:"auth" json:"auth"`
Username string `form:"username" json:"username"`
Password string `form:"password" json:"password"`
}