package
Version:
v1.0.7
Opens a new window with list of versions in this module.
Published: Dec 15, 2024
License: GPL-3.0
Opens a new window with license information.
Imports: 1
Opens a new window with list of imports.
Imported by: 0
Opens a new window with list of known importers.
Documentation
¶
type LoginUserDTO struct {
Email string `json:"email"`
Password string `json:"password"`
}
type RefreshToken struct {
ID uint64 `json:"id"`
UserID uint64 `json:"userID"`
TTL time.Time `json:"ttl"`
Value string `json:"value"`
CreatedAt time.Time `json:"createdAt"`
UpdatedAt time.Time `json:"updatedAt"`
}
type TokensDTO struct {
AccessToken string `json:"accessToken"`
RefreshToken string `json:"refreshToken"`
}
type User struct {
ID uint64 `json:"id"`
Email string `json:"email"`
Password string `json:"password"`
CreatedAt time.Time `json:"createdAt"`
UpdatedAt time.Time `json:"updatedAt"`
}
Source Files
¶
Click to show internal directories.
Click to hide internal directories.