Files
tessera/core/data/processor.go
2025-11-27 20:34:34 +08:00

15 lines
238 B
Go

package data
import "context"
type Processor interface {
Name() string
Configure(cfg map[string]any) error
Run(ctx context.Context, actions ProcessorActions) error
}
type ProcessorActions interface {
IngressActions
EgresActions
}