Files
2017-06-10 09:44:58 +02:00

15 lines
297 B
C#

using System;
namespace WireMock.Net.StandAlone
{
public class Program
{
static void Main(params string[] args)
{
StandAloneApp.Start(args);
Console.WriteLine("Press any key to stop the server");
Console.ReadKey();
}
}
}