mirror of
https://github.com/nsnail/Ocelot.git
synced 2025-04-22 19:32:52 +08:00
17 lines
357 B
C#
17 lines
357 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Threading.Tasks;
|
|
using BenchmarkDotNet.Running;
|
|
|
|
namespace Ocelot.Benchmarks
|
|
{
|
|
public class Program
|
|
{
|
|
public static void Main(string[] args)
|
|
{
|
|
var summary = BenchmarkRunner.Run<UrlPathToUrlPathTemplateMatcherBenchmarks>();
|
|
}
|
|
}
|
|
}
|