Interlinked/src/Interlinked.User/Controllers/SystemController.cs

18 lines
365 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
using Microsoft.AspNetCore.Mvc;
namespace Interlinked.User.Controllers;
[ApiController]
[Route("api/")]
public class SystemController : ControllerBase
{
[HttpGet("version")]
public async Task<IActionResult> Version()
{
return Ok("1.0E");
}
}