ms-runner/internal/runner/usecase.go

10 lines
141 B
Go
Raw Normal View History

2024-11-01 18:22:43 +00:00
package runner
type RunnerUseCase interface {
Process(i interface{}) error
Results() <-chan interface{}
Ready() bool
Lock()
Unlock()
}