mirror of
https://github.com/EpinelPS/EpinelPS.git
synced 2025-12-14 07:55:01 +01:00
17 lines
370 B
C#
17 lines
370 B
C#
using Google.Protobuf.WellKnownTypes;
|
|
using EpinelPS.Utils;
|
|
|
|
namespace EpinelPS.LobbyServer
|
|
{
|
|
public class EmptyHandler : LobbyMsgHandler
|
|
{
|
|
protected override async Task HandleAsync()
|
|
{
|
|
ReqGetNow req = await ReadData<ReqGetNow>();
|
|
ResGetNow response = new();
|
|
|
|
await WriteDataAsync(response);
|
|
}
|
|
}
|
|
}
|