type Group struct {
HandleCrit func(err error)
// contains filtered or unexported fields
}
Group is a tasks group, which can at any point be awaited to complete.
Tasks in the group are run in separate go routines.
If a task panics, the panic is recovered with HandleCrit.