mirror of
https://github.com/nsnail/Ocelot.git
synced 2025-04-22 19:52:50 +08:00
18 lines
351 B
C#
18 lines
351 B
C#
using BenchmarkDotNet.Running;
|
|
|
|
namespace Ocelot.Benchmarks
|
|
{
|
|
public class Program
|
|
{
|
|
public static void Main(string[] args)
|
|
{
|
|
var switcher = new BenchmarkSwitcher(new[] {
|
|
typeof(UrlPathToUrlPathTemplateMatcherBenchmarks),
|
|
|
|
});
|
|
|
|
switcher.Run(args);
|
|
}
|
|
}
|
|
}
|