Documentation
¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type QueryParameters ¶
type ToDoItem ¶
type ToDoItem struct {
CreatedAt time.Time `json:"created_at"`
UpdatedAt time.Time `json:"updated_at"`
DeletedAt DeletedAt `gorm:"index" json:"-" `
Content string `gorm:"not null" json:"content" form:"content"`
Completed bool `gorm:"not null;index" json:"completed" form:"completed" `
ID uint `gorm:"primarykey" json:"id" form:"id"`
Author string `gorm:"not null;index" json:"author" form:"author"`
}
Click to show internal directories.
Click to hide internal directories.