Skip to content

Instantly share code, notes, and snippets.

@websterian
Created August 10, 2018 21:42
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/3cec6952cc3cb6728fdd9fce5e793132 to your computer and use it in GitHub Desktop.
Save websterian/3cec6952cc3cb6728fdd9fce5e793132 to your computer and use it in GitHub Desktop.
namespace Sitecore.Commerce.Plugin.Sample
{
using Microsoft.Extensions.Logging;
using Sitecore.Commerce.Core;
using Sitecore.Framework.Pipelines;
using Sitecore.Services.Examples.Composer;
public class CreateComposerTemplatesPipeline : CommercePipeline<CreateComposerTemplatesArgument, bool>, ICreateComposerTemplatesPipeline
{
public CreateComposerTemplatesPipeline(IPipelineConfiguration<ICreateComposerTemplatesPipeline> configuration, ILoggerFactory loggerFactory)
: base(configuration, loggerFactory)
{
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment