Loading component/cli/cli.go +17 −0 Original line number Diff line number Diff line package cli import "fmt" // CLI structure type CLI struct { } // New create a new environment func New() (*CLI, error) { return &CLI{}, nil } // Start is the main entry point func (c *CLI) Start() error { fmt.Println("cac") return nil } Loading
component/cli/cli.go +17 −0 Original line number Diff line number Diff line package cli import "fmt" // CLI structure type CLI struct { } // New create a new environment func New() (*CLI, error) { return &CLI{}, nil } // Start is the main entry point func (c *CLI) Start() error { fmt.Println("cac") return nil }