mirror of
				https://github.com/Kareadita/Kavita.git
				synced 2025-10-31 02:27:04 -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");
 | |
|     }
 | |
| }
 |