diff options
author | Jan Tattermusch <jtattermusch@google.com> | 2015-05-06 10:23:17 -0700 |
---|---|---|
committer | Jan Tattermusch <jtattermusch@google.com> | 2015-05-07 14:50:46 -0700 |
commit | 2d9249577670996768d8832392571ab2ab997e8d (patch) | |
tree | 6acd46b3e8c3f8910969a2273293ab54a5afd8a9 /src/csharp | |
parent | f51e8587fcb17677826ecf3d08dde3f46089a305 (diff) |
added csharp generator plugin
Diffstat (limited to 'src/csharp')
-rw-r--r-- | src/csharp/Grpc.Examples/MathGrpc.cs | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/src/csharp/Grpc.Examples/MathGrpc.cs b/src/csharp/Grpc.Examples/MathGrpc.cs index 03f5c31cb7..9ab60137f7 100644 --- a/src/csharp/Grpc.Examples/MathGrpc.cs +++ b/src/csharp/Grpc.Examples/MathGrpc.cs @@ -32,8 +32,6 @@ #endregion using System; -using System.Collections.Generic; -using System.Reactive.Linq; using System.Threading; using System.Threading.Tasks; using Grpc.Core; @@ -43,7 +41,7 @@ namespace math /// <summary> /// Math service definitions (this is handwritten version of code that will normally be generated). /// </summary> - public class MathGrpc + public static class MathGrpc { static readonly string ServiceName = "/math.Math"; |