diff --git a/starter-template/go.mod b/starter-template/go.mod index 4f076ca..2b7f113 100644 --- a/starter-template/go.mod +++ b/starter-template/go.mod @@ -1,4 +1,4 @@ -module mhtml/starter-template +module github.com/maddalax/mhtml/starter-template go 1.23.0 @@ -6,7 +6,6 @@ require ( github.com/gofiber/fiber/v2 v2.52.5 github.com/google/uuid v1.6.0 github.com/redis/go-redis/v9 v9.6.1 - github.com/maddalax/mhtml/framework v1.0.0 ) require ( diff --git a/starter-template/news/views.go b/starter-template/news/views.go index 2a1fd50..75d28a4 100644 --- a/starter-template/news/views.go +++ b/starter-template/news/views.go @@ -2,8 +2,8 @@ package news import ( "fmt" - "mhtml/framework/h" - "mhtml/starter-template/database" + "github.com/maddalax/mhtml/framework/h" + "github.com/maddalax/mhtml/starter-template/database" "time" )