package
Version:
v0.0.0-...-ceb3aa2
Opens a new window with list of versions in this module.
Published: Apr 24, 2021
License: MIT
Opens a new window with license information.
Imports: 4
Opens a new window with list of imports.
Imported by: 0
Opens a new window with list of known importers.
Documentation
¶
type Action struct {
ID uint `json:"id" gorm:"primary_key"`
CreatedBy uint `json:"created_by"`
Slug string `json:"slug"`
Title string `json:"title"`
Deleted bool `json:"deleted"`
}
type Event struct {
ID uint `json:"id" gorm:"primary_key"`
ActionID uint `json:"action_id"`
Time string `json:"time"`
}
type Response struct {
ID uint `json:"id" gorm:"primary_key"`
EventID uint `json:"event_id"`
UserID uint `json:"user_id"`
Response string `json:"response"`
}
type User struct {
ID uint `json:"id" gorm:"primary_key"`
Nickname string `json:"nickname"`
Firstname string `json:"firstname"`
Lastname string `json:"lastname"`
}
type Usermeta struct {
ID uint `json:"id" gorm:"primary_key"`
UserID uint `json:"user_id"`
MetaKey string `json:"meta_key"`
MetaValue string `json:"meta_value"`
}
Source Files
¶
Click to show internal directories.
Click to hide internal directories.