catbase/bot/user/users.go

23 lines
414 B
Go
Raw Permalink Normal View History

// © 2013 the CatBase Authors under the WTFPL. See AUTHORS for the list of authors.
package user
import "image"
// User type stores user history. This is a vehicle that will follow the user for the active
// session
type User struct {
// Current nickname known
ID string
Name string
Admin bool
Icon string
IconImg image.Image
2016-04-21 15:19:38 +00:00
}
2016-04-21 15:19:38 +00:00
func New(name string) User {
return User{
Name: name,
}
}