mirror of
https://github.com/wiremock/WireMock.Net.git
synced 2026-03-28 11:51:48 +01:00
* Xeger * update example * 1.0.7 * Fix tests for Handlebars_Xeger * ReplaceNodeValue * 1.0.5 * readme
20 lines
498 B
C#
20 lines
498 B
C#
using HandlebarsDotNet;
|
|
|
|
namespace WireMock.Transformers
|
|
{
|
|
internal static class HandlebarsHelpers
|
|
{
|
|
public static void Register(IHandlebars handlebarsContext)
|
|
{
|
|
HandleBarsRegex.Register(handlebarsContext);
|
|
|
|
HandleBarsJsonPath.Register(handlebarsContext);
|
|
|
|
HandleBarsLinq.Register(handlebarsContext);
|
|
|
|
HandleBarsRandom.Register(handlebarsContext);
|
|
|
|
HandleBarsXeger.Register(handlebarsContext);
|
|
}
|
|
}
|
|
} |