mirror of
https://github.com/goharbor/harbor.git
synced 2024-11-08 03:30:51 +01:00
14 lines
301 B
Go
14 lines
301 B
Go
package replication
|
|
|
|
type ImgOutParm struct {
|
|
Secret string `json:"secret"`
|
|
Image string `json:"image"`
|
|
Targets []*RegistryInfo `json:"targets"`
|
|
}
|
|
|
|
type RegistryInfo struct {
|
|
URL string `json:"url"`
|
|
Username string `json:"username"`
|
|
Password string `json:"password"`
|
|
}
|