From 5519308047d11bd5966ce87f2cfe26f1c09ca686 Mon Sep 17 00:00:00 2001 From: Todd Beets Date: Thu, 7 Sep 2023 15:20:35 -0700 Subject: [PATCH] Re-order auth.go imports following server convention. --- server/auth.go | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/server/auth.go b/server/auth.go index cc5546f4..23564312 100644 --- a/server/auth.go +++ b/server/auth.go @@ -28,11 +28,10 @@ import ( "sync/atomic" "time" - "golang.org/x/crypto/bcrypt" - "github.com/nats-io/jwt/v2" "github.com/nats-io/nats-server/v2/internal/ldap" "github.com/nats-io/nkeys" + "golang.org/x/crypto/bcrypt" ) // Authentication is an interface for implementing authentication