mirror of
https://github.com/kataras/iris.git
synced 2025-01-24 11:11:03 +01:00
10 lines
136 B
Go
10 lines
136 B
Go
package model
|
|
|
|
// Role represents a role.
|
|
type Role string
|
|
|
|
const (
|
|
// Admin represents the Admin access role.
|
|
Admin Role = "admin"
|
|
)
|