16 lines
342 B
C#
16 lines
342 B
C#
|
|
using Microsoft.AspNetCore.Authorization;
|
||
|
|
using Microsoft.AspNetCore.Mvc;
|
||
|
|
|
||
|
|
namespace Hncore.Infrastructure.WebApi
|
||
|
|
{
|
||
|
|
[Route("/check")]
|
||
|
|
public class CheckController: ControllerBase
|
||
|
|
{
|
||
|
|
[HttpGet]
|
||
|
|
[AllowAnonymous]
|
||
|
|
public IActionResult Get()
|
||
|
|
{
|
||
|
|
return Ok("ok");
|
||
|
|
}
|
||
|
|
}
|
||
|
|
}
|