Skip to content

Instantly share code, notes, and snippets.

@websterian
Created August 31, 2018 20:56
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save websterian/d819fea63070dcdc29021b360fd7b45e to your computer and use it in GitHub Desktop.
Save websterian/d819fea63070dcdc29021b360fd7b45e to your computer and use it in GitHub Desktop.
namespace Sitecore.Services.Examples.Indexing
{
using Microsoft.Extensions.Logging;
using Sitecore.Commerce.Core;
using Sitecore.Framework.Pipelines;
public class GenerateFacetsPipeline : CommercePipeline<GenerateFacetsArgument, bool>, IGenerateFacetsPipeline
{
public GenerateFacetsPipeline(IPipelineConfiguration<IGenerateFacetsPipeline> configuration, ILoggerFactory loggerFactory)
: base(configuration, loggerFactory)
{
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment