mirror of
https://github.com/wiremock/WireMock.Net.git
synced 2026-03-22 00:59:02 +01:00
23 lines
637 B
C#
23 lines
637 B
C#
using HandlebarsDotNet;
|
|
using WireMock.Handlers;
|
|
|
|
namespace WireMock.Transformers
|
|
{
|
|
internal static class HandlebarsHelpers
|
|
{
|
|
public static void Register(IHandlebars handlebarsContext, IFileSystemHandler fileSystemHandler)
|
|
{
|
|
HandleBarsRegex.Register(handlebarsContext);
|
|
|
|
HandleBarsJsonPath.Register(handlebarsContext);
|
|
|
|
HandleBarsLinq.Register(handlebarsContext);
|
|
|
|
HandleBarsRandom.Register(handlebarsContext);
|
|
|
|
HandleBarsXeger.Register(handlebarsContext);
|
|
|
|
HandleBarsFile.Register(handlebarsContext, fileSystemHandler);
|
|
}
|
|
}
|
|
} |