mirror of https://github.com/velour/catbase.git
21 lines
378 B
Go
21 lines
378 B
Go
|
// © 2013 the CatBase Authors under the WTFPL. See AUTHORS for the list of authors.
|
||
|
|
||
|
package user
|
||
|
|
||
|
// User type stores user history. This is a vehicle that will follow the user for the active
|
||
|
// session
|
||
|
type User struct {
|
||
|
// Current nickname known
|
||
|
Name string
|
||
|
|
||
|
// LastSeen DateTime
|
||
|
|
||
|
// Alternative nicknames seen
|
||
|
Alts []string
|
||
|
Parent string
|
||
|
|
||
|
Admin bool
|
||
|
|
||
|
//bot *bot
|
||
|
}
|