nfflow/interfaces/input.go

10 lines
175 B
Go
Raw Normal View History

2024-03-29 18:05:09 +08:00
package interfaces
import "context"
type Input interface {
InitClient(ctx context.Context) error
Fetch(ctx context.Context, limit int)
Close(ctx context.Context) error
}