10 lines
175 B
Go
10 lines
175 B
Go
|
package interfaces
|
||
|
|
||
|
import "context"
|
||
|
|
||
|
type Input interface {
|
||
|
InitClient(ctx context.Context) error
|
||
|
Fetch(ctx context.Context, limit int)
|
||
|
Close(ctx context.Context) error
|
||
|
}
|