Update SDK x demoVB

This commit is contained in:
Samuele Locatelli
2023-04-19 17:24:25 +02:00
parent c0a8785b28
commit c6ae31c80d
8 changed files with 462 additions and 0 deletions
@@ -0,0 +1,24 @@
using Microsoft.AspNetCore.Http;
using Microsoft.AspNetCore.Mvc;
namespace WebDoorCreator.API.Controllers
{
[Route("api/[controller]")]
[ApiController]
public class AliveController : ControllerBase
{
// GET: api/Alive
[HttpGet]
public string Get()
{
return "OK";
}
//// GET: api/Alive/Clock
//[HttpGet("Clock")]
//public string GetClock(string id)
//{
// return DateTime.Now.ToString($"yyyy-MM-dd HH:mm:ss.fff - ID: {id}");
//}
}
}