8 lines
146 B
Go
8 lines
146 B
Go
|
package arn
|
||
|
|
||
|
// NickToUser stores the user ID by nickname.
|
||
|
type NickToUser struct {
|
||
|
Nick string `json:"nick"`
|
||
|
UserID UserID `json:"userId"`
|
||
|
}
|