package
Version:
v0.0.0-...-b12e379
Opens a new window with list of versions in this module.
Published: Dec 3, 2024
License: GPL-3.0
Opens a new window with license information.
Imports: 5
Opens a new window with list of imports.
Imported by: 0
Opens a new window with list of known importers.
Documentation
¶
type Concert struct {
ID int64 `json:"id"`
Title string `json:"title"`
Description string `json:"description"`
Location string `json:"location"`
AuthorID uuid.UUID `json:"author-id"`
CreateDate time.Time `json:"create-date"`
UpdateDate time.Time `json:"update-date"`
}
type Ticket struct {
ID int64 `json:"id"`
VerificationToken string `json:"verification-token"`
ConcertID int64 `json:"concert-id"`
UserID uuid.UUID `json:"user-id"`
CreateDate time.Time `json:"create-date"`
UpdateDate time.Time `json:"update-date"`
}
type User struct {
ID uuid.UUID `json:"id"`
Username string `json:"username"`
Email string `json:"email"`
FullName string `json:"full-name"`
CreateDate time.Time `json:"create-date"`
UpdateDate time.Time `json:"update-date"`
}
Source Files
¶
Click to show internal directories.
Click to hide internal directories.