12 lines
176 B
Go
12 lines
176 B
Go
package objstore
|
|
|
|
import (
|
|
"context"
|
|
)
|
|
|
|
func Healthcheck(s Store) func(ctx context.Context) error {
|
|
return func(ctx context.Context) error {
|
|
return s.Healthcheck(ctx)
|
|
}
|
|
}
|