// Copyright (c) Six Labors.
// Licensed under the Apache License, Version 2.0.
using System.Reflection;
using BenchmarkDotNet.Running;
namespace SixLabors.ImageSharp.Benchmarks
{
public class Program
{
///
/// The main.
///
///
/// The arguments to pass to the program.
///
public static void Main(string[] args)
{
new BenchmarkSwitcher(typeof(Program).GetTypeInfo().Assembly).Run(args);
}
}
}