borepin/FabAccessAPI/InjectableTcpRpcClient.cs

13 lines
272 B
C#
Raw Normal View History

2020-11-07 22:08:40 +01:00
using System;
using System.Collections.Generic;
using System.Text;
using Capnp.Rpc;
namespace FabAccessAPI {
class InjectableTcpRpcClient : TcpRpcClient {
public InjectableTcpRpcClient() {
throw new NotImplementedException();
}
2020-11-07 22:08:40 +01:00
}
}