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