Files
AobaV2/AobaServer/Controllers/Api/AuthApi.cs
2025-04-15 23:00:11 -04:00

20 lines
366 B
C#

using Microsoft.AspNetCore.Mvc;
namespace AobaServer.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();
}
}