Files
AobaV2/AobaServer/Controllers/Api/AuthApi.cs
2025-04-14 21:38:30 -04:00

20 lines
362 B
C#

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();
}
}