Skip to content

Commit

Permalink
lint fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
sesposito committed Sep 5, 2024
1 parent 36a63b5 commit a256b27
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions server/console_authenticate.go
Original file line number Diff line number Diff line change
Expand Up @@ -25,10 +25,10 @@ import (
"time"

"github.com/dgryski/dgoogauth"
"github.com/gofrs/uuid/v5"
"github.com/golang-jwt/jwt/v4"
uuid "github.com/gofrs/uuid/v5"
jwt "github.com/golang-jwt/jwt/v4"
"github.com/heroiclabs/nakama/v3/console"
"github.com/jackc/pgx/v5"
pgx "github.com/jackc/pgx/v5"
"github.com/jackc/pgx/v5/pgtype"
"go.uber.org/zap"
"golang.org/x/crypto/bcrypt"
Expand Down
4 changes: 2 additions & 2 deletions server/console_user.go
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,8 @@ import (
"time"
"unicode"

"github.com/gofrs/uuid/v5"
"github.com/golang-jwt/jwt/v4"
uuid "github.com/gofrs/uuid/v5"
jwt "github.com/golang-jwt/jwt/v4"
"github.com/heroiclabs/nakama/v3/console"
"github.com/jackc/pgx/v5/pgconn"
"go.uber.org/zap"
Expand Down
2 changes: 1 addition & 1 deletion server/jwt.go
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ import (
"errors"
"fmt"

"github.com/golang-jwt/jwt/v4"
jwt "github.com/golang-jwt/jwt/v4"
)

func generateJWTToken(signingKey string, claims jwt.Claims) (string, error) {
Expand Down

0 comments on commit a256b27

Please sign in to comment.