This repository has been archived on 2021-03-06. You can view files and clone it, but cannot push or open issues or pull requests.

24 lines
550 B
C#
Raw Normal View History

2021-03-04 01:57:21 -05:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
using Grpc.Core;
using Microsoft.Extensions.Logging;
2021-03-05 11:56:51 -05:00
using Aurora.Cursor;
2021-03-04 01:57:21 -05:00
namespace Aurora.Services.Signal
2021-03-04 01:57:21 -05:00
{
public partial class SignalService : Signal.SignalBase
2021-03-04 01:57:21 -05:00
{
private readonly ILogger<SignalService> _logger;
private CursorList<Party> _partyList;
2021-03-04 01:57:21 -05:00
public SignalService(ILogger<SignalService> logger)
{
_logger = logger;
this._partyList = new CursorList<Party>();
2021-03-04 01:57:21 -05:00
}
}
}