fix: No token refresh or revocation mechanism~

This commit is contained in:
voltsrage
2026-06-25 14:14:20 +08:00
parent a8964381a2
commit fdcc646fae
26 changed files with 3453 additions and 55 deletions
@@ -1,4 +1,6 @@
public interface IAuthService
{
Task<LoginResponse> LoginAsync(LoginRequest req);
Task<RefreshResponse> RefreshAsync(string refreshToken);
Task LogoutAsync(string refreshToken, Guid userId);
}