mirror of
https://github.com/goharbor/harbor.git
synced 2024-11-06 10:44:36 +01:00
11 lines
238 B
Go
11 lines
238 B
Go
package models
|
|
|
|
//Endpoint : For /api/targets
|
|
type Endpoint struct {
|
|
Endpoint string `json:"endpoint"`
|
|
Name string `json:"name"`
|
|
Username string `json:"username"`
|
|
Password string `json:"password"`
|
|
Type int `json:"type"`
|
|
}
|