Skip to content

Commit

Permalink
Update Go Module Name
Browse files Browse the repository at this point in the history
  • Loading branch information
KingLeak95 committed Oct 30, 2023
1 parent 6618768 commit 3ffde42
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 2 deletions.
3 changes: 2 additions & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
module todolist-go
module github.com/KingLeak95/todo-list-go

go 1.21.0

require (
github.com/DATA-DOG/go-sqlmock v1.5.0
github.com/gin-gonic/gin v1.9.1
gorm.io/driver/sqlite v1.5.3
gorm.io/gorm v1.25.4
Expand Down
2 changes: 2 additions & 0 deletions go.sum
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
github.com/DATA-DOG/go-sqlmock v1.5.0 h1:Shsta01QNfFxHCfpW6YH2STWB0MudeXXEWMr20OEh60=
github.com/DATA-DOG/go-sqlmock v1.5.0/go.mod h1:f/Ixk793poVmq4qj/V1dPUg2JEAKC73Q5eFN3EC/SaM=
github.com/bytedance/sonic v1.5.0/go.mod h1:ED5hyg4y6t3/9Ku1R6dU/4KyJ48DZ4jPhfY1O2AihPM=
github.com/bytedance/sonic v1.9.1 h1:6iJ6NqdoxCDr6mbY8h18oSO+cShGSMRGCEo7F2h0x8s=
github.com/bytedance/sonic v1.9.1/go.mod h1:i736AoUSYt75HyZLoJW9ERYxcy6eaN6h4BZXU064P/U=
Expand Down
2 changes: 1 addition & 1 deletion main.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package main
import (
"github.com/gin-gonic/gin"
"net/http"
"todolist-go/models"
"github.com/KingLeak95/todo-list-go/models"
)

func createUser(c *gin.Context) {
Expand Down

0 comments on commit 3ffde42

Please sign in to comment.