(Feat): Initial Commit
This commit is contained in:
11
internal/auth/scopes.go
Normal file
11
internal/auth/scopes.go
Normal file
@@ -0,0 +1,11 @@
|
||||
package auth
|
||||
|
||||
type Scope string
|
||||
|
||||
const (
|
||||
ScopeApp Scope = "app"
|
||||
)
|
||||
|
||||
func (s Scope) String() string {
|
||||
return string(s)
|
||||
}
|
||||
Reference in New Issue
Block a user