task-processor/internal/processor/interface.go

11 lines
166 B
Go
Raw Permalink Normal View History

2026-02-21 16:57:42 +03:00
package processor
import (
"context"
)
type Processor interface {
ProcessTasks(ctx context.Context) error
SendResults(ctx context.Context, chanLen uint) error
}