Add profiles domain, infra, API endpoints

This commit is contained in:
Holden
2026-06-18 12:05:54 -05:00
parent c7b8857208
commit e0171c3c82
36 changed files with 678 additions and 87 deletions

View 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!");
}