This commit is contained in:
Stef Heyenrath
2022-03-11 14:46:25 +01:00
committed by GitHub
parent 2a1d14b52c
commit 55fbc52ce9
11 changed files with 437 additions and 1 deletions

View File

@@ -0,0 +1,9 @@
namespace WireMock.Net.WebApplication
{
public interface IWireMockService
{
void Start();
void Stop();
}
}