You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- using Microsoft.AspNetCore.Authorization;
- using Microsoft.AspNetCore.Mvc;
- using System.Diagnostics;
- using System.Reflection;
-
- namespace MQTTnet.Server.Controllers
- {
- [Authorize]
- [ApiController]
- public class ServerController : Controller
- {
- [Route("api/v1/server/version")]
- [HttpGet]
- public ActionResult<string> GetVersion()
- {
- var fileVersion = FileVersionInfo.GetVersionInfo(Assembly.GetExecutingAssembly().Location);
- return fileVersion.ProductVersion.ToString();
- }
- }
- }
|