Initial commit

This commit is contained in:
BillyCool
2026-04-21 01:10:25 +10:00
commit c5595ea083
1752 changed files with 45767 additions and 0 deletions

View 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());
}
}