mirror of
https://github.com/bitwarden/server.git
synced 2026-01-31 22:23:18 +08:00
18 lines
325 B
C#
18 lines
325 B
C#
|
|
using System;
|
|||
|
|
using Microsoft.AspNetCore.Mvc;
|
|||
|
|
|
|||
|
|
namespace Bit.Identity.Controllers
|
|||
|
|
{
|
|||
|
|
public class MiscController : Controller
|
|||
|
|
{
|
|||
|
|
public MiscController() { }
|
|||
|
|
|
|||
|
|
[HttpGet("~/alive")]
|
|||
|
|
[HttpGet("~/now")]
|
|||
|
|
public DateTime Get()
|
|||
|
|
{
|
|||
|
|
return DateTime.UtcNow;
|
|||
|
|
}
|
|||
|
|
}
|
|||
|
|
}
|