Sign in
vanadium
/
release.go.x.ref
/
c48f4b87d35261381da0e063c3a433b78fdc1839
/
.
/
services
/
wsprd
/
ipc
/
server
/
authorizer.go
blob: e9e0e77464370529b61eb81cc6eeba625f6a4958 [
file
] [
log
] [
blame
]
package server
import (
"v.io/core/veyron2/security"
)
type authorizer struct {
authFunc remoteAuthFunc
}
func (a *authorizer) Authorize(ctx security.Context) error {
return a.authFunc(ctx)
}