octopush/pkg/actions/interface.go

7 lines
160 B
Go
Raw Normal View History

2022-09-13 21:15:32 +02:00
package actions
import "context"
type Predicate func(ctx context.Context, path string) (bool, error)
type Action func(ctx context.Context, path string) error