mirror of
https://github.com/stashapp/stash.git
synced 2026-02-08 00:12:55 +01:00
8 lines
95 B
Go
8 lines
95 B
Go
package user
|
|
|
|
type RoleEnum string
|
|
|
|
type User struct {
|
|
Username string
|
|
Roles []RoleEnum
|
|
}
|