rename server

This commit is contained in:
2025-04-14 21:38:30 -04:00
parent 6410d84754
commit 93c04b9535
13 changed files with 1 additions and 1 deletions

View File

@@ -0,0 +1,19 @@
using Microsoft.AspNetCore.Mvc;
namespace AobaV2.Controllers.Api;
[Route("/api/auth")]
public class AuthApi : ControllerBase
{
[HttpGet("login")]
public async Task<IActionResult> LoginAsync()
{
throw new NotImplementedException();
}
[HttpGet("register")]
public async Task<IActionResult> RegisterAsync()
{
throw new NotImplementedException();
}
}