mirror of
				https://github.com/nsnail/Ocelot.git
				synced 2025-11-04 15:30:49 +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);
 | 
						|
        }
 | 
						|
    }
 | 
						|
}
 |