Documentation
¶
Overview ¶
Package issue allows to query on issues against the remote issue provider
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Finder ¶
type Finder interface {
// FindById allows to retrieve an issue given its identifier.
// It optionally writes any relevant warnings or messages to eventually output into the io.Writer object specified.
FindById(w io.Writer, repo string, id string) (Info, error)
}
Finder is the interface used to manipulate issues
type GHIssueFinder ¶
type GHIssueFinder struct{}
GHIssueFinder is a struct type that implements the issue.Finder interface
func NewGHIssueFinder ¶
func NewGHIssueFinder() *GHIssueFinder
NewGHIssueFinder returns a new object of type GHIssueFinder
Click to show internal directories.
Click to hide internal directories.