| 29 | } |
| 30 | |
| 31 | type App struct { |
| 32 | io *iostreams.IOStreams |
| 33 | apiClient apiClient |
| 34 | errLogger *log.Logger |
| 35 | executable executable |
| 36 | browser browser.Browser |
| 37 | remotes func() (clicontext.Remotes, error) |
| 38 | } |
| 39 | |
| 40 | func NewApp(io *iostreams.IOStreams, exe executable, apiClient apiClient, browser browser.Browser, remotes func() (clicontext.Remotes, error)) *App { |
| 41 | errLogger := log.New(io.ErrOut, "", 0) |
nothing calls this directly
no outgoing calls
no test coverage detected