Files
SPT-Server-Build/Core/Controllers/ClientLogController.cs
T
2025-01-11 18:14:39 +00:00

18 lines
359 B
C#

using Core.Annotations;
using Core.Models.Spt.Logging;
namespace Core.Controllers;
[Injectable]
public class ClientLogController
{
/// <summary>
/// Handle /singleplayer/log
/// </summary>
/// <param name="logRequest"></param>
public void ClientLog(ClientLogRequest logRequest)
{
throw new NotImplementedException();
}
}