8 lines
114 B
Go
8 lines
114 B
Go
|
package cli
|
||
|
|
||
|
func Init() {
|
||
|
rootCLI.AddCommand(cmdStart())
|
||
|
rootCLI.AddCommand(cmdVersion())
|
||
|
rootCLI.Execute()
|
||
|
}
|