mirror of
https://github.com/foomo/posh.git
synced 2025-10-16 12:45:38 +00:00
10 lines
149 B
Go
10 lines
149 B
Go
package check
|
|
|
|
import (
|
|
"context"
|
|
|
|
"github.com/foomo/posh/pkg/log"
|
|
)
|
|
|
|
type Check func(ctx context.Context, l log.Logger, checkers []Checker) error
|