mirror of
https://github.com/foomo/gofuncy.git
synced 2026-04-15 01:34:32 +00:00
9 lines
178 B
Go
9 lines
178 B
Go
package gofuncy
|
|
|
|
import (
|
|
"context"
|
|
)
|
|
|
|
// ErrorHandler is a callback for handling errors from fire-and-forget goroutines.
|
|
type ErrorHandler func(ctx context.Context, err error)
|