1
0
mirror of https://github.com/velour/catbase.git synced 2025-04-03 19:51:42 +00:00
catbase/bot/user/users.go
Chris Sexton a9937d9b8e discord: add discord functionality
* added discord connector
* modified user to support image avatars instead of URL avatars
* modified meme to send IDs instead of names
2020-09-09 13:21:39 -04:00

23 lines
414 B
Go

// © 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
}
func New(name string) User {
return User{
Name: name,
}
}