Add AuthController and configure authentication/identity services

This commit is contained in:
2026-01-25 15:29:28 +01:00
parent d1a72876d2
commit 91dd8d1603
2 changed files with 21 additions and 3 deletions

View File

@@ -0,0 +1,10 @@
using Microsoft.AspNetCore.Mvc;
namespace API.Controllers;
[ApiController]
[Route("api/account")]
public class AuthController : ControllerBase
{
}