Add profiles domain, infra, API endpoints
This commit is contained in:
13
API/Controllers/Config/V1/ConfigController.cs
Normal file
13
API/Controllers/Config/V1/ConfigController.cs
Normal file
@@ -0,0 +1,13 @@
|
||||
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!");
|
||||
}
|
||||
Reference in New Issue
Block a user