mirror of
https://github.com/FabInfra/capnproto-dotnetcore_Runtime.git
synced 2025-03-12 14:51:41 +01:00
19 lines
360 B
C#
19 lines
360 B
C#
using BenchmarkDotNet.Running;
|
|
using Capnp.Rpc;
|
|
using Grpc.Net.Client;
|
|
using System;
|
|
using System.Diagnostics;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Benchmark
|
|
{
|
|
class Program
|
|
{
|
|
static void Main(string[] args)
|
|
{
|
|
BenchmarkRunner.Run<GrpcBenchmark>();
|
|
BenchmarkRunner.Run<CapnpBenchmark>();
|
|
}
|
|
}
|
|
}
|