2016-04-01 10:20:03 -04:00
|
|
|
// © 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
|
2017-01-05 09:48:57 -05:00
|
|
|
ID string
|
2016-04-21 11:19:38 -04:00
|
|
|
Name string
|
2016-04-01 10:20:03 -04:00
|
|
|
Admin bool
|
2020-05-08 10:31:27 -04:00
|
|
|
Icon string
|
2016-04-21 11:19:38 -04:00
|
|
|
}
|
2016-04-01 10:20:03 -04:00
|
|
|
|
2016-04-21 11:19:38 -04:00
|
|
|
func New(name string) User {
|
|
|
|
return User{
|
|
|
|
Name: name,
|
|
|
|
}
|
2016-04-01 10:20:03 -04:00
|
|
|
}
|