20 lines
266 B
Go
20 lines
266 B
Go
package main
|
|
|
|
import (
|
|
"log"
|
|
|
|
"git.front.kjuulh.io/kjuulh/dagger-go/pkg/cli"
|
|
"github.com/spf13/cobra"
|
|
)
|
|
|
|
func main() {
|
|
cmd := &cobra.Command{
|
|
Use: "dagger-go",
|
|
}
|
|
|
|
cmd.AddCommand(cli.Build())
|
|
if err := cmd.Execute(); err != nil {
|
|
log.Fatal("%w", err)
|
|
}
|
|
}
|