Improved user lists

This commit is contained in:
2017-11-30 16:40:52 +01:00
parent 4f4a6e7f13
commit 5284698e73
9 changed files with 187 additions and 16 deletions

9
utils/UserList.go Normal file
View File

@ -0,0 +1,9 @@
package utils
import "github.com/animenotifier/arn"
// UserList is a named list of users.
type UserList struct {
Name string
Users []*arn.User
}