mirror of
https://github.com/Kareadita/Kavita.git
synced 2025-05-24 00:52:23 -04:00
18 lines
280 B
C#
18 lines
280 B
C#
using Microsoft.AspNetCore.Authorization;
|
|
using Microsoft.AspNetCore.Mvc;
|
|
|
|
namespace API.Controllers;
|
|
|
|
#nullable enable
|
|
|
|
[AllowAnonymous]
|
|
public class HealthController : BaseApiController
|
|
{
|
|
|
|
[HttpGet]
|
|
public ActionResult GetHealth()
|
|
{
|
|
return Ok("Ok");
|
|
}
|
|
}
|