Documentation
¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
Types ¶
type Repositories ¶
type Repositories struct {
Next string `json:"next"`
Results []Repository `json:"results"`
Total int `json:"total"`
ResultsPerPage int `json:"results_per_page"`
}
type Repository ¶
type Repository struct {
ID int `json:"id"`
Created time.Time `json:"created"`
Updated time.Time `json:"updated"`
Name string `json:"name"`
Owner struct {
CanonicalName string `json:"canonical_name"`
Name string `json:"name"`
} `json:"owner"`
Description string `json:"description"`
Visibility string `json:"visibility"`
}
type Results ¶ added in v0.10.14
type Results struct {
ID string `json:"id"`
ShortID string `json:"short_id"`
Author Author `json:"author"`
Committer Committer `json:"committer"`
Timestamp time.Time `json:"timestamp"`
Message string `json:"message"`
Tree string `json:"tree"`
Parents []string `json:"parents"`
Signature interface{} `json:"signature"`
}
Click to show internal directories.
Click to hide internal directories.