jetherald/JetHerald/Controllers/HelloController.cs
2022-01-26 01:05:05 +03:00

21 lines
486 B
C#

using System.Reflection;
using Microsoft.AspNetCore.Mvc;
namespace JetHerald.Controllers;
[ApiController]
public class HelloController : ControllerBase
{
[Route("api/hello")]
[HttpGet]
public object Hello()
{
return new
{
status = "OK",
server_name = "JetHerald",
server_version = Assembly.GetExecutingAssembly().GetCustomAttribute<AssemblyInformationalVersionAttribute>().InformationalVersion
};
}
}