bust/pkg/cli/build.go
kjuulh 6c885ec33c
All checks were successful
continuous-integration/drone/push Build is passing
with rust template
2022-11-06 00:39:03 +01:00

20 lines
215 B
Go

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