Documentation
¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
View Source
var CollectErr = errors.New("Collect error:")
View Source
var QueryErr = errors.New("Query error:")
Functions ¶
This section is empty.
Types ¶
type Profile ¶
type Profile struct { ID uuid.UUID `json:"id" db:"id"` Name string `json:"name" db:"name"` Email string `json:"email" db:"email"` Password string `json:"-" db:"password"` Disabled bool `db:"disabled"` IsAdmin bool `db:"is_admin"` LastLogin time.Time `json:"last_login" db:"last_login"` Created time.Time `json:"created" db:"created"` Updated time.Time `json:"updated" db:"updated"` Remarks string `db:"remarks"` // contains filtered or unexported fields }
Click to show internal directories.
Click to hide internal directories.