10 lines
150 B
Go
10 lines
150 B
Go
|
package utils
|
||
|
|
||
|
import "github.com/animenotifier/arn"
|
||
|
|
||
|
// UserList is a named list of users.
|
||
|
type UserList struct {
|
||
|
Name string
|
||
|
Users []*arn.User
|
||
|
}
|