blob: 359bfb5c11d22b27335f8c8b1a2d4fbb82409635 (
plain)
1
2
3
4
5
6
7
|
package websspi
// UserInfo represents an authenticated user.
type UserInfo struct {
Username string // Name of user, usually in the form DOMAIN\User
Groups []string // The global groups the user is a member of
}
|