using Microsoft.AspNetCore.Mvc; namespace AobaServer.Controllers.Api; [Route("/api/auth")] public class AuthApi : ControllerBase { [HttpGet("login")] public Task LoginAsync() { throw new NotImplementedException(); } [HttpGet("register")] public Task RegisterAsync() { throw new NotImplementedException(); } }