feat: release v1.0.0
This commit is contained in:
9
internal/model/auth/jwt.go
Normal file
9
internal/model/auth/jwt.go
Normal file
@@ -0,0 +1,9 @@
|
||||
package auth
|
||||
|
||||
import "time"
|
||||
|
||||
type RefreshTokenRecord struct {
|
||||
UserID int32 `json:"user_id"`
|
||||
CreatedAt time.Time `json:"created_at"`
|
||||
ExpiresAt time.Time `json:"expires_at"`
|
||||
}
|
||||
Reference in New Issue
Block a user