15 lines
312 B
C#
15 lines
312 B
C#
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>();
|
|
}
|
|
}
|
|
}
|