Skip to content

Commit d5404ab

Browse files
committed
module resolve
1 parent 1cb8526 commit d5404ab

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

go.mod

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
module go-jwt
1+
module github.com/HelpDeskPlatform/gin-jwt
22

33
go 1.17
44

jwt/token.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,10 @@ package jwt
22

33
import (
44
"fmt"
5+
"github.com/HelpDeskPlatform/gin-jwt/config"
6+
"github.com/HelpDeskPlatform/gin-jwt/db"
57
"github.com/dgrijalva/jwt-go"
68
"github.com/google/uuid"
7-
"go-jwt/config"
8-
"go-jwt/db"
99
"strings"
1010
"time"
1111
)

main.go

+3-3
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,11 @@ package main
22

33
import (
44
"fmt"
5+
"github.com/HelpDeskPlatform/gin-jwt/config"
6+
"github.com/HelpDeskPlatform/gin-jwt/db"
7+
"github.com/HelpDeskPlatform/gin-jwt/jwt"
58
"github.com/gin-gonic/gin"
69
"github.com/x1unix/godotenv"
7-
"go-jwt/config"
8-
"go-jwt/db"
9-
"go-jwt/jwt"
1010
"log"
1111
)
1212

0 commit comments

Comments
 (0)