Add XML docs

This commit is contained in:
Stone_Red
2025-12-23 15:15:18 +01:00
parent 55f26b3a92
commit 3e339b2b7a
26 changed files with 377 additions and 4 deletions
@@ -4,10 +4,18 @@ using RemoteExec.Server.Hubs;
namespace RemoteExec.Server.Controllers;
/// <summary>
/// Controller for handling assembly upload requests from clients.
/// </summary>
[ApiController]
[Route("/")]
public class AssemblyController(ILogger<AssemblyController> logger) : ControllerBase
{
/// <summary>
/// Receives an assembly binary from a client in response to an assembly request.
/// </summary>
/// <param name="requestId">The unique identifier for the assembly request.</param>
/// <returns>An action result indicating success or failure.</returns>
[HttpPost("provide-assembly")]
public async Task<IActionResult> ProvideAssembly([FromQuery] Guid requestId)
{