nfflow/interfaces/input.go
2024-03-29 18:05:09 +08:00

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
}