using Microsoft.AspNetCore.Mvc; namespace AVSCartonShipmentVerifier.Controllers; /// /// Lightweight endpoints for desktop host startup (no database or dashboard work). /// [ApiController] public sealed class DesktopHostController : ControllerBase { [HttpGet("/health")] [HttpGet("/api/desktop-host/ready")] public IActionResult Ready() => Ok(new { ready = true }); }