Program.cs 312 B

1234567891011121314
  1. using System;
  2. using BenchmarkDotNet.Running;
  3. namespace Jellyfin.Common.Benches
  4. {
  5. public static class Program
  6. {
  7. public static void Main(string[] args)
  8. {
  9. _ = BenchmarkRunner.Run<HexEncodeBenches>();
  10. _ = BenchmarkRunner.Run<HexDecodeBenches>();
  11. }
  12. }
  13. }