mirror of
https://github.com/BillyCool/MariesWonderland.git
synced 2026-03-25 08:22:26 +01:00
Solution cleanup. Implement stubs for all remaining services. Add API models. Move configuration to appsettings.
This commit is contained in:
13
src/Services/IndividualPopService.cs
Normal file
13
src/Services/IndividualPopService.cs
Normal file
@@ -0,0 +1,13 @@
|
||||
using MariesWonderland.Proto.IndividualPop;
|
||||
using Google.Protobuf.WellKnownTypes;
|
||||
using Grpc.Core;
|
||||
|
||||
namespace MariesWonderland.Services;
|
||||
|
||||
public class IndividualPopService : MariesWonderland.Proto.IndividualPop.IndividualpopService.IndividualpopServiceBase
|
||||
{
|
||||
public override Task<GetUnreadPopResponse> GetUnreadPop(Empty request, ServerCallContext context)
|
||||
{
|
||||
return Task.FromResult(new GetUnreadPopResponse());
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user