Files
History_Api/internal/models/token.go
AzenKain 7f589b4994
All checks were successful
Build and Release / release (push) Successful in 1m7s
UPDATE: Add rederict
2026-03-31 12:47:15 +07:00

15 lines
324 B
Go

package models
import "history-api/pkg/constants"
type TokenEntity struct {
Email string `json:"email"`
Token string `json:"token"`
TokenType constants.TokenType `json:"token_type"`
}
type OAuthState struct {
State string `json:"state"`
RedirectURL string `json:"redirect"`
}