Versions in this module Expand all Collapse all v0 v0.0.3 Apr 25, 2018 Changes in this version + func NewBosh(Exit chan struct{}, UI UI, Config config.Config) *cobra.Command + func NewCatalog(UI UI, Config config.Config) *cobra.Command + func NewDownload(Exit chan struct{}, UI UI, Config config.Config) *cobra.Command + func NewRoot(Exit chan struct{}, UI UI, Config config.Config) *cobra.Command + func NewStart(Exit chan struct{}, UI UI, Config config.Config) *cobra.Command + func NewStop(Config config.Config) *cobra.Command + func NewTelemetry(UI UI, Config config.Config) *cobra.Command type UI + Writer func() io.Writer v0.0.2 Apr 19, 2018 Changes in this version + type ClientInterface interface + Enqueue func(analytics.Message) error type Start + AnalyticsClient analytics.Client type Stop + AnalyticsClient analytics.Client + type Telemetry struct + Config config.Config + Exit chan struct{} + UI UI + func (t *Telemetry) Run(args []string) error v0.0.1 Feb 23, 2018 Changes in this version + type Bosh struct + Config config.Config + Exit chan struct{} + UI UI + func (b *Bosh) Run(args []string) error + type Catalog struct + Config config.Config + UI UI + func (c *Catalog) Run(args []string) error + type Download struct + Config config.Config + Exit chan struct{} + UI UI + func (d *Download) Run(args []string) error + type Start struct + Config config.Config + Exit chan struct{} + UI UI + func (s *Start) Run(args []string) error + type Stop struct + Config config.Config + func (s *Stop) Run(args []string) error + type UI interface + Say func(message string, args ...interface{})