mirror of
https://github.com/foomo/posh.git
synced 2025-10-16 12:45:38 +00:00
10 lines
154 B
Go
10 lines
154 B
Go
package check
|
|
|
|
import (
|
|
"context"
|
|
|
|
"github.com/foomo/posh/pkg/log"
|
|
)
|
|
|
|
type Checker func(ctx context.Context, l log.Logger) (name, note string, ok bool)
|