stillbox/pkg/users/guest.go
2025-01-19 21:51:39 -05:00

13 lines
180 B
Go

package users
import (
"dynatron.me/x/stillbox/pkg/rbac"
)
type Public struct {
RemoteAddr string
}
func (s *Public) GetRoles() []string {
return []string{rbac.RolePublic}
}