Add drone #32

Closed
kjuulh wants to merge 13 commits from experiment/alternative-pipeline into v0.3
Showing only changes of commit f4fe238f58 - Show all commits

View File

@ -9,11 +9,17 @@ import (
)
func main() {
if err := cli.Build(
cmd := &cobra.Command{
Use: "dagger-go",
}
cmd.AddCommand(cli.Build(
func(cmd *cobra.Command) {},
func(ctx context.Context) error {
return nil
}); err != nil {
log.Fatal(err)
}))
if err := cmd.Execute(); err != nil {
log.Fatal("%w", err)
}
}