Update SDK x demoVB
This commit is contained in:
@@ -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}");
|
||||
//}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user