blob: 80b85424d455ed1deac44389e79ac2e3ff7e657f [file] [log] [blame]
// Copyright 2015 The Vanadium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
package server
import (
"v.io/v23/context"
)
type authorizer struct {
authFunc remoteAuthFunc
}
func (a *authorizer) Authorize(ctx *context.T) error {
return a.authFunc(ctx)
}