Files
gofuncy/errorhandler.go
Kevin Franklin Kim 4c4995d592 feat: v0.1.0 (#11)
2026-04-10 22:36:54 +02:00

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)