using Microsoft.AspNetCore.Authorization; using Microsoft.AspNetCore.Mvc; namespace Moonlight.Api.Shared; [ApiController] [Route("api/ping")] public class PingController : Controller { [HttpGet] [AllowAnonymous] public IActionResult Get() { return Ok("Pong"); } }