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