mirror of
https://github.com/bitwarden/server.git
synced 2026-02-06 00:53:20 +08:00
16 lines
267 B
C#
16 lines
267 B
C#
|
|
using System;
|
|||
|
|
using Microsoft.AspNet.Mvc;
|
|||
|
|
|
|||
|
|
namespace Bit.Api.Controllers
|
|||
|
|
{
|
|||
|
|
[Route("alive")]
|
|||
|
|
public class AliveController : Controller
|
|||
|
|
{
|
|||
|
|
[HttpGet("")]
|
|||
|
|
public DateTime Get()
|
|||
|
|
{
|
|||
|
|
return DateTime.UtcNow;
|
|||
|
|
}
|
|||
|
|
}
|
|||
|
|
}
|