fleshout backend

This commit is contained in:
KS Jannette
2026-08-03 04:23:32 -04:00
parent a00282b1e6
commit 092ef17439
19 changed files with 500 additions and 52 deletions

View File

@@ -1,10 +1,11 @@
using Backend.Gateway;
using Microsoft.AspNetCore.Mvc;
namespace Backend.Controllers;
[Route("v1/[controller]")]
[ApiController]
public class InfoController : ControllerBase
[Route(ApiRoutes.V1 + "/[controller]")]
public sealed class InfoController : ControllerBase
{
private readonly IWebHostEnvironment _environment;