bust/pkg/cli/build.go

19 lines
197 B
Go
Raw 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",
}
2022-10-31 21:57:16 +01:00
cmd.AddCommand(
BuildGolangBin(),
BuildDocker(),
)
2022-10-30 18:33:59 +01:00
return cmd
}