aboutsummaryrefslogtreecommitdiff
path: root/benches/Jellyfin.Common.Benches/Program.cs
blob: b218b0dc10a9f795fe6e02f7bd4e70f9bb9f694d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
using System;
using BenchmarkDotNet.Running;

namespace Jellyfin.Common.Benches
{
    public static class Program
    {
        public static void Main(string[] args)
        {
            _ = BenchmarkRunner.Run<HexEncodeBenches>();
            _ = BenchmarkRunner.Run<HexDecodeBenches>();
        }
    }
}