9 lines
156 B
Go
9 lines
156 B
Go
|
|
package common
|
||
|
|
|
||
|
|
import "context"
|
||
|
|
|
||
|
|
type MerchProvider interface {
|
||
|
|
GetTasks(ctx context.Context) ([]Task, error)
|
||
|
|
InsertRecords(ctx context.Context) error
|
||
|
|
}
|