8 lines
146 B
Go
Raw Normal View History

2019-06-03 09:32:43 +00:00
package arn
// NickToUser stores the user ID by nickname.
type NickToUser struct {
Nick string `json:"nick"`
UserID UserID `json:"userId"`
}