Files
EpinelPS/nksrv/LobbyServer/Msgs/Misc/GetMaintenanceNotice.cs
2024-07-15 11:13:02 -04:00

23 lines
491 B
C#

using Google.Protobuf;
using nksrv.Net;
using nksrv.Utils;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace nksrv.LobbyServer.Msgs.Misc
{
[PacketPath("/maintenancenotice")]
public class GetMaintenanceNotice : LobbyMsgHandler
{
protected override async Task HandleAsync()
{
var r = new MaintenanceNoticeResponse();
await WriteDataAsync(r);
}
}
}