mirror of
				https://github.com/Kareadita/Kavita.git
				synced 2025-11-03 19:17:05 -05: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");
 | 
						|
    }
 | 
						|
}
 |