Skip to content

Commit

Permalink
fix module name
Browse files Browse the repository at this point in the history
  • Loading branch information
artem-streltsov committed Sep 15, 2024
1 parent e102c58 commit 9134985
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 8 deletions.
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/artemstreltsov/url-shortener
module github.com/artem-streltsov/url-shortener

go 1.20

Expand Down
8 changes: 4 additions & 4 deletions internal/handlers/handlers.go
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,10 @@ import (
"strings"
"time"

"github.com/artemstreltsov/url-shortener/internal/database"
"github.com/artemstreltsov/url-shortener/internal/middleware"
"github.com/artemstreltsov/url-shortener/internal/safebrowsing"
"github.com/artemstreltsov/url-shortener/internal/utils"
"github.com/artem-streltsov/url-shortener/internal/database"
"github.com/artem-streltsov/url-shortener/internal/middleware"
"github.com/artem-streltsov/url-shortener/internal/safebrowsing"
"github.com/artem-streltsov/url-shortener/internal/utils"
"github.com/gorilla/sessions"
"golang.org/x/crypto/bcrypt"
)
Expand Down
6 changes: 3 additions & 3 deletions main.go
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,9 @@ import (
"syscall"
"time"

"github.com/artemstreltsov/url-shortener/internal/database"
"github.com/artemstreltsov/url-shortener/internal/handlers"
"github.com/artemstreltsov/url-shortener/internal/safebrowsing"
"github.com/artem-streltsov/url-shortener/internal/database"
"github.com/artem-streltsov/url-shortener/internal/handlers"
"github.com/artem-streltsov/url-shortener/internal/safebrowsing"
"github.com/joho/godotenv"
)

Expand Down

0 comments on commit 9134985

Please sign in to comment.