Files
WireMock.Net-wiremock/src/WireMock.Net/Transformers/IHandlebarsContextFactory.cs
Stef Heyenrath 8bafd6a1ba Transform body as file (#388)
* .

* fix
2019-12-06 06:52:08 +01:00

10 lines
153 B
C#

using HandlebarsDotNet;
namespace WireMock.Transformers
{
interface IHandlebarsContextFactory
{
IHandlebarsContext Create();
}
}