cli/pkg/cmdutil/factory.go
2020-05-20 15:21:35 +02:00

12 lines
176 B
Go

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