with actual cli

This commit is contained in:
2022-10-30 18:33:59 +01:00
parent 2b641df577
commit 18f7e1fc27
10 changed files with 107 additions and 66 deletions

15
pkg/cli/build.go Normal file
View 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
}