mirror of
https://github.com/TbT480jcspy/Iris-Rec-2023-Server-Code.git
synced 2026-09-08 14:41:24 -07:00
17 lines
364 B
C#
17 lines
364 B
C#
using Microsoft.AspNetCore.Http;
|
|
using Microsoft.AspNetCore.Mvc;
|
|
|
|
namespace ir23.Controllers
|
|
{
|
|
[Route("api/[controller]")]
|
|
[ApiController]
|
|
public class checklistController : ControllerBase
|
|
{
|
|
[HttpGet("v1/current")]
|
|
public IActionResult ji0owefowjiefwefjoi()
|
|
{
|
|
return Ok(new List<object>());
|
|
}
|
|
}
|
|
}
|