diff --git a/util/wrapper/wrapper.go b/util/wrapper/wrapper.go index 25053228..0569a4ac 100644 --- a/util/wrapper/wrapper.go +++ b/util/wrapper/wrapper.go @@ -128,6 +128,10 @@ func TraceHandler(t trace.Tracer) server.HandlerWrapper { } } +func AuthCall(a func() auth.Auth, c client.Client) client.Client { + return &authWrapper{Client:c, auth: a} +} + type authWrapper struct { client.Client auth func() auth.Auth