We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e1ad9d6 commit 7ac5611Copy full SHA for 7ac5611
src/Surging.IModuleServices/Surging.IModuleServices.Common/IGreeterService.cs
@@ -1,10 +1,14 @@
1
-using Surging.Core.CPlatform.Ioc;
+using Greet;
2
+using Grpc.Core;
3
+using Surging.Core.CPlatform.Ioc;
4
using Surging.Core.CPlatform.Runtime.Server.Implementation.ServiceDiscovery.Attributes;
5
+using System.Threading.Tasks;
6
7
namespace Surging.IModuleServices.Common
8
{
9
[ServiceBundle("api/{Service}/{Method}")]
10
public interface IGreeterService : IServiceKey
11
12
+ Task<HelloReply> SayHello(HelloRequest request, ServerCallContext context = null);
13
}
14
0 commit comments