mirror of
https://github.com/foomo/keel.git
synced 2025-10-16 12:35:34 +00:00
12 lines
164 B
Go
12 lines
164 B
Go
package interfaces
|
|
|
|
import (
|
|
"context"
|
|
)
|
|
|
|
type CloserFunc func(ctx context.Context) error
|
|
|
|
func (f CloserFunc) Close(ctx context.Context) error {
|
|
return f(ctx)
|
|
}
|