mirror of https://github.com/1Panel-dev/1Panel
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
358 B
16 lines
358 B
package model
|
|
|
|
type ImageRepo struct {
|
|
BaseModel
|
|
|
|
Name string `gorm:"not null" json:"name"`
|
|
DownloadUrl string `json:"downloadUrl"`
|
|
Protocol string `json:"protocol"`
|
|
Username string `json:"username"`
|
|
Password string `json:"password"`
|
|
Auth bool `json:"auth"`
|
|
|
|
Status string `json:"status"`
|
|
Message string `json:"message"`
|
|
}
|