From 9819abe766f3776b0a7cced1fcec67c05e38e445 Mon Sep 17 00:00:00 2001 From: Gerard Snaauw <33763579+gerardsn@users.noreply.github.com> Date: Wed, 4 Sep 2024 17:03:30 +0200 Subject: [PATCH] remove unuse client field in jar (#3344) --- auth/api/iam/jar.go | 2 -- 1 file changed, 2 deletions(-) diff --git a/auth/api/iam/jar.go b/auth/api/iam/jar.go index 7f435ef89..8c98ebeb9 100644 --- a/auth/api/iam/jar.go +++ b/auth/api/iam/jar.go @@ -27,7 +27,6 @@ import ( "github.com/lestrrat-go/jwx/v2/jwt" "github.com/nuts-foundation/go-did/did" "github.com/nuts-foundation/nuts-node/auth" - "github.com/nuts-foundation/nuts-node/auth/client/iam" "github.com/nuts-foundation/nuts-node/auth/oauth" cryptoNuts "github.com/nuts-foundation/nuts-node/crypto" "github.com/nuts-foundation/nuts-node/vdr/resolver" @@ -49,7 +48,6 @@ type jar struct { auth auth.AuthenticationServices jwtSigner cryptoNuts.JWTSigner keyResolver resolver.KeyResolver - client iam.Client } type JAR interface {