cli/pkg/cmdutil/factory.go
2020-07-23 11:01:29 -05:00

15 lines
340 B
Go

package cmdutil
import (
"net/http"
"github.com/cli/cli/internal/ghrepo"
"github.com/cli/cli/pkg/iostreams"
)
type Factory struct {
IOStreams *iostreams.IOStreams
HttpClient func() (*http.Client, error)
ResolvedBaseRepo func(*http.Client) (ghrepo.Interface, error)
BaseRepo func() (ghrepo.Interface, error)
}