added stuff

This commit is contained in:
2022-10-29 18:00:16 +02:00
parent e1f7858927
commit ec52c93af9
7 changed files with 891 additions and 1 deletions

16
main.go Normal file
View File

@@ -0,0 +1,16 @@
package daggergo
import (
"git.front.kjuulh.io/kjuulh/dagger-go/cmd"
"github.com/spf13/cobra"
)
func CreateCmd() *cobra.Command {
cobracmd := &cobra.Command{
Use: "dagger-go",
}
cobracmd.AddCommand(cmd.Build())
return cobracmd
}