task-processor/internal/processor/interface.go
2026-02-21 16:57:42 +03:00

10 lines
166 B
Go

package processor
import (
"context"
)
type Processor interface {
ProcessTasks(ctx context.Context) error
SendResults(ctx context.Context, chanLen uint) error
}