More controllers

This commit is contained in:
Cj
2025-01-06 20:22:50 -05:00
parent e5481361cf
commit a1cad6b2dc
2 changed files with 156 additions and 0 deletions
+15
View File
@@ -0,0 +1,15 @@
using Core.Models.Spt.Logging;
namespace Core.Controllers;
public class ClientLogController
{
/// <summary>
/// Handle /singleplayer/log
/// </summary>
/// <param name="logRequest"></param>
public void ClientLog(ClientLogRequest logRequest)
{
throw new NotImplementedException();
}
}