We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5c00b0f commit e427793Copy full SHA for e427793
modules/structs/mirror.go
@@ -17,10 +17,12 @@ type CreatePushMirrorOption struct {
17
// PushMirror represents information of a push mirror
18
// swagger:model
19
type PushMirror struct {
20
- RepoName string `json:"repo_name"`
21
- RemoteName string `json:"remote_name"`
22
- RemoteAddress string `json:"remote_address"`
23
- CreatedUnix time.Time `json:"created"`
+ RepoName string `json:"repo_name"`
+ RemoteName string `json:"remote_name"`
+ RemoteAddress string `json:"remote_address"`
+ // swagger:strfmt date-time
24
+ CreatedUnix time.Time `json:"created"`
25
26
LastUpdateUnix time.Time `json:"last_update"`
27
LastError string `json:"last_error"`
28
Interval string `json:"interval"`
0 commit comments