Changed package name from github.com/lmika/audax to github.com/lmika/dynamo-browse
11 lines
211 B
Go
11 lines
211 B
Go
package commandctrl
|
|
|
|
import (
|
|
"context"
|
|
"github.com/lmika/dynamo-browse/internal/dynamo-browse/services"
|
|
)
|
|
|
|
type IterProvider interface {
|
|
Iter(ctx context.Context, category string) services.HistoryProvider
|
|
}
|