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)
}