18 lines
359 B
C#
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();
|
|
}
|
|
}
|