Removed internal token package

This commit is contained in:
phoenix
2025-11-01 17:04:01 -04:00
parent efe43045d5
commit b5e5c3d79a
-19
View File
@@ -1,19 +0,0 @@
package model
/*
import (
"github.com/golang-jwt/jwt/v5"
)
type Claims struct {
UserId string `json:"user_id"`
Role string `json:"role"`
jwt.RegisteredClaims
}
*/
type Login struct {
AccessToken string `json:"access_token"`
TokenType string `json:"token_type"`
ExpiresIn int64 `json:"expires_in"`
}