mirror of
https://github.com/BillyCool/MariesWonderland.git
synced 2026-05-10 06:23:39 +02:00
Initial commit
This commit is contained in:
14
src/Services/IndividualPopService.cs
Normal file
14
src/Services/IndividualPopService.cs
Normal file
@@ -0,0 +1,14 @@
|
||||
using Google.Protobuf.WellKnownTypes;
|
||||
using Grpc.Core;
|
||||
using MariesWonderland.Proto.IndividualPop;
|
||||
|
||||
namespace MariesWonderland.Services;
|
||||
|
||||
public class IndividualPopService : MariesWonderland.Proto.IndividualPop.IndividualpopService.IndividualpopServiceBase
|
||||
{
|
||||
/// <summary>Returns an empty response. Individual pop-up notifications not yet implemented.</summary>
|
||||
public override Task<GetUnreadPopResponse> GetUnreadPop(Empty request, ServerCallContext context)
|
||||
{
|
||||
return Task.FromResult(new GetUnreadPopResponse());
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user