mirror of
https://github.com/gravitl/netmaker.git
synced 2025-09-29 08:24:23 +08:00
21 lines
324 B
Go
21 lines
324 B
Go
package idp
|
|
|
|
type Client interface {
|
|
Verify() error
|
|
GetUsers() ([]User, error)
|
|
GetGroups() ([]Group, error)
|
|
}
|
|
|
|
type User struct {
|
|
ID string
|
|
Username string
|
|
DisplayName string
|
|
AccountDisabled bool
|
|
AccountArchived bool
|
|
}
|
|
|
|
type Group struct {
|
|
ID string
|
|
Name string
|
|
Members []string
|
|
}
|