You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
crate/exegroup/group_test.go

18 lines
312 B
Go

package exegroup_test
import (
"context"
"log"
"git.blauwelle.com/go/crate/exegroup"
)
func Example_defaultGroup() {
g := exegroup.Default()
g.New().WithName("do nothing").WithGo(func(ctx context.Context) error {
<-ctx.Done()
return ctx.Err()
})
log.Println("exit:", g.Run(context.Background()))
}