Skip to content

Commit

Permalink
update pkg
Browse files Browse the repository at this point in the history
  • Loading branch information
temur abdurahmanov committed Oct 18, 2024
1 parent bc2e72d commit 722ac4f
Show file tree
Hide file tree
Showing 6 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,6 @@
# Go workspace file
go.work
go.work.sum

.idea
# env file
.env
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
module github.com/ascenmmo/token-generator.git
module github.com/ascenmmo/token-generator

go 1.23.2

Expand Down
4 changes: 2 additions & 2 deletions tests/generator_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@ package tests
import (
"context"
"fmt"
tokengenerator "github.com/ascenmmo/token-generator.git/token_generator"
tokentype "github.com/ascenmmo/token-generator.git/token_type"
tokengenerator "github.com/ascenmmo/token-generator/token_generator"
tokentype "github.com/ascenmmo/token-generator/token_type"
"github.com/google/uuid"
"github.com/stretchr/testify/assert"
"runtime"
Expand Down
2 changes: 1 addition & 1 deletion token_generator/aesgcm.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import (
"encoding/hex"
"encoding/json"
"errors"
tokentype "github.com/ascenmmo/token-generator.git/token_type"
tokentype "github.com/ascenmmo/token-generator/token_type"
"io"
"time"
)
Expand Down
2 changes: 1 addition & 1 deletion token_generator/jwt.go
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ package tokengenerator

import (
"errors"
tokentype "github.com/ascenmmo/token-generator.git/token_type"
tokentype "github.com/ascenmmo/token-generator/token_type"
"github.com/dgrijalva/jwt-go"
"time"
)
Expand Down
2 changes: 1 addition & 1 deletion token_generator/token.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package tokengenerator
import (
"errors"
"fmt"
tokentype "github.com/ascenmmo/token-generator.git/token_type"
tokentype "github.com/ascenmmo/token-generator/token_type"
"strings"
)

Expand Down

0 comments on commit 722ac4f

Please sign in to comment.