package
Version:
v0.0.0-...-41b6ebc
Opens a new window with list of versions in this module.
Published: Jan 24, 2024
License: MIT
Opens a new window with license information.
Imports: 3
Opens a new window with list of imports.
Imported by: 0
Opens a new window with list of known importers.
Documentation
¶
type Category struct {
gorm.Model
Title string `json:"title" validate:"nonzero,nonnil"`
Color string `json:"color" validate:"nonzero,nonnil"`
Videos []Video `json:"videos"`
}
type Video struct {
gorm.Model
Title string `json:"title" validate:"nonzero,nonnil"`
Description string `json:"description" validate:"nonzero,nonnil"`
URL string `json:"url" validate:"nonzero,nonnil"`
CategoryID uint `json:"category_id" validate:"nonzero,nonnil" gorm:"index;default:1"`
}
Source Files
¶
Click to show internal directories.
Click to hide internal directories.