1
0
mirror of https://github.com/bitwarden/server.git synced 2024-11-22 12:15:36 +01:00

added alive controller and endpoint

This commit is contained in:
Kyle Spearrin 2016-02-20 23:29:28 -05:00
parent 9914399e8b
commit 1da53f0ecc

View File

@ -0,0 +1,15 @@
using System;
using Microsoft.AspNet.Mvc;
namespace Bit.Api.Controllers
{
[Route("alive")]
public class AliveController : Controller
{
[HttpGet("")]
public DateTime Get()
{
return DateTime.UtcNow;
}
}
}