Skip to content

Instantly share code, notes, and snippets.

Embed
What would you like to do?
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