mirror of
https://github.com/jellyfin/jellyfin.git
synced 2025-04-24 14:08:44 -04:00
14 lines
312 B
C#
14 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>();
|
|
}
|
|
}
|
|
}
|