| 46 | } |
| 47 | |
| 48 | type Start struct { |
| 49 | ui terminal.UI |
| 50 | config coreconfig.Reader |
| 51 | appDisplayer Displayer |
| 52 | appReq requirements.ApplicationRequirement |
| 53 | appRepo applications.Repository |
| 54 | logRepo logs.Repository |
| 55 | appInstancesRepo appinstances.Repository |
| 56 | |
| 57 | LogServerConnectionTimeout time.Duration |
| 58 | StartupTimeout time.Duration |
| 59 | StagingTimeout time.Duration |
| 60 | PingerThrottle time.Duration |
| 61 | } |
| 62 | |
| 63 | func init() { |
| 64 | commandregistry.Register(&Start{}) |
nothing calls this directly
no outgoing calls
no test coverage detected