app-cloudep-permission-server/pkg/domain/token/scope.go

8 lines
93 B
Go
Raw Normal View History

2025-02-13 11:06:51 +00:00
package token
type TScope string
func (s *TScope) ToString() string {
return string(*s)
}