package interfaces import "context" type Input interface { InitClient(ctx context.Context) error Fetch(ctx context.Context, limit int) Close(ctx context.Context) error }