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