with actual cli
This commit is contained in:
13
pkg/cli/root.go
Normal file
13
pkg/cli/root.go
Normal file
@@ -0,0 +1,13 @@
|
||||
package cli
|
||||
|
||||
import "github.com/spf13/cobra"
|
||||
|
||||
func NewCli() *cobra.Command {
|
||||
cmd := &cobra.Command{
|
||||
Use: "dagger",
|
||||
}
|
||||
|
||||
cmd.AddCommand(Build())
|
||||
|
||||
return cmd
|
||||
}
|
Reference in New Issue
Block a user