mirror of
https://github.com/bitwarden/server.git
synced 2026-02-06 09:03:21 +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;
|
|
}
|
|
}
|
|
}
|