bust/pkg/cli/build.go
kjuulh f44ef84c89
All checks were successful
continuous-integration/drone/push Build is passing
with docker
2022-10-31 21:57:16 +01:00

19 lines
197 B
Go

package cli
import (
"github.com/spf13/cobra"
)
func Build() *cobra.Command {
cmd := &cobra.Command{
Use: "build",
}
cmd.AddCommand(
BuildGolangBin(),
BuildDocker(),
)
return cmd
}