All checks were successful
Build and Release / release (push) Successful in 1m7s
15 lines
324 B
Go
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"`
|
|
}
|