Documentation
¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Change ¶
type Change struct {
ID int64 `gorm:"primaryKey"`
CreatedAt time.Time
UpdatedAt time.Time
ChangeID string `json:"change-id"`
ChangeIDInt int64 `json:"change-id-int"`
Kind string `json:"kind"`
Summary string `json:"summary"`
Status string `json:"status"`
Ready bool `json:"ready"`
Err string `json:"err,omitempty"`
SpawnTime time.Time `json:"spawn-time,omitempty"`
ReadyTime time.Time `json:"ready-time,omitempty"`
}
type ChangeLogger ¶
type ChangeLogger struct {
// contains filtered or unexported fields
}
func New ¶
func New() *ChangeLogger
type ChangesClient ¶
type ChangesClient interface {
Changes(opts *client.ChangesOptions) ([]*client.Change, error)
}
Click to show internal directories.
Click to hide internal directories.