Files
History_Api/internal/models/token.go
AzenKain f04441bf2a
Some checks failed
Build and Release / release (push) Failing after 1m25s
UPDATE: Auth module, User module
2026-03-30 00:27:57 +07:00

10 lines
223 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"`
}