with actual cli
This commit is contained in:
15
pkg/cli/build.go
Normal file
15
pkg/cli/build.go
Normal file
@@ -0,0 +1,15 @@
|
||||
package cli
|
||||
|
||||
import (
|
||||
"github.com/spf13/cobra"
|
||||
)
|
||||
|
||||
func Build() *cobra.Command {
|
||||
cmd := &cobra.Command{
|
||||
Use: "build",
|
||||
}
|
||||
|
||||
cmd.AddCommand(BuildGolangBin())
|
||||
|
||||
return cmd
|
||||
}
|
Reference in New Issue
Block a user