From 1245dcb2e31362326d0ea6fb4eea1aa85d858ece Mon Sep 17 00:00:00 2001 From: maddalax Date: Fri, 13 Sep 2024 12:07:32 -0500 Subject: [PATCH] rename --- starter-template/go.mod | 3 +-- starter-template/news/views.go | 4 ++-- 2 files changed, 3 insertions(+), 4 deletions(-) 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" )