package search import ( "context" "tercul/internal/domain/work" ) // SearchClient defines the interface for a search client. type SearchClient interface { IndexWork(ctx context.Context, work *work.Work, pipeline string) error }