Files
TenWholeYears.Server/API/Controllers/Config/V1/ConfigController.cs
2026-06-18 13:15:27 -05:00

13 lines
301 B
C#

using Microsoft.AspNetCore.Mvc;
namespace API.Controllers.Config.V1;
[Route("api/[controller]/v1")]
[ApiController]
public class ConfigController : ControllerBase
{
// TODO: Resolve from Database
[HttpGet("motd")]
public ActionResult<string> GetMotd()
=> Ok("Hello World!");
}