Adding static roles

This commit is contained in:
2018-11-15 18:10:07 +01:00
parent 1b41ad660a
commit 5ab2296187
2 changed files with 9 additions and 1 deletions

7
constants/role.go Normal file
View File

@ -0,0 +1,7 @@
package constants
const (
RoleOwner = iota
RoleAdmin
RoleUser
)