bust/pkg/cli/build.go

16 lines
174 B
Go
Raw Permalink Normal View History

2022-10-30 18:33:59 +01:00
package cli
import (
"github.com/spf13/cobra"
)
func Build() *cobra.Command {
cmd := &cobra.Command{
Use: "build",
}
cmd.AddCommand(BuildGolangBin())
return cmd
}