diff --git a/src/Api/Controllers/AliveController.cs b/src/Api/Controllers/AliveController.cs new file mode 100644 index 0000000000..678ed79761 --- /dev/null +++ b/src/Api/Controllers/AliveController.cs @@ -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; + } + } +}