14 lines
452 B
C#
14 lines
452 B
C#
using System;
|
|
using System.Threading.Tasks;
|
|
using Aurora.Proto.PartyV2;
|
|
|
|
namespace Aurora.Services.Server.Controllers
|
|
{
|
|
public partial class RemotePartyController : RemotePartyService.RemotePartyServiceBase
|
|
{
|
|
public override Task GetEvents(GetEventsRequest request, Grpc.Core.IServerStreamWriter<BaseEvent> responseStream, Grpc.Core.ServerCallContext context)
|
|
{
|
|
throw new NotImplementedException();
|
|
}
|
|
}
|
|
} |