Documentation
¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
func NewBookmarkListResponse ¶
func NewGameListResponse ¶
func NewUserListResponse ¶
Types ¶
type Bookmark ¶
type Bookmark struct { ID uuid.UUID `gorm:"primaryKey" json:"id"` Name string `json:"name"` Type BookmarkType `json:"type"` URL string `json:"url,omitempty"` Tags []string `json:"tags"` Children []*Bookmark `json:"children,omitempty"` CreatedAt time.Time `json:"created_at"` UpdatedAt time.Time `json:"updated_at"` }
type BookmarkType ¶
type BookmarkType string
const ( BookmarkTypeFolder BookmarkType = "folder" BookmarkTypeBookmark BookmarkType = "bookmark" )
type Game ¶
type Game struct { ID uuid.UUID `gorm:"primaryKey" json:"id"` Name string `json:"name"` }
Click to show internal directories.
Click to hide internal directories.