mirror of
https://github.com/BillyCool/MariesWonderland.git
synced 2026-03-22 06:52:24 +01:00
14 lines
435 B
C#
14 lines
435 B
C#
using Google.Protobuf.WellKnownTypes;
|
|
using Grpc.Core;
|
|
using MariesWonderland.Proto.IndividualPop;
|
|
|
|
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());
|
|
}
|
|
}
|