This commit is contained in:
maddalax 2024-09-13 12:07:32 -05:00
parent c7828881b3
commit 1245dcb2e3
2 changed files with 3 additions and 4 deletions

View file

@ -1,4 +1,4 @@
module mhtml/starter-template module github.com/maddalax/mhtml/starter-template
go 1.23.0 go 1.23.0
@ -6,7 +6,6 @@ require (
github.com/gofiber/fiber/v2 v2.52.5 github.com/gofiber/fiber/v2 v2.52.5
github.com/google/uuid v1.6.0 github.com/google/uuid v1.6.0
github.com/redis/go-redis/v9 v9.6.1 github.com/redis/go-redis/v9 v9.6.1
github.com/maddalax/mhtml/framework v1.0.0
) )
require ( require (

View file

@ -2,8 +2,8 @@ package news
import ( import (
"fmt" "fmt"
"mhtml/framework/h" "github.com/maddalax/mhtml/framework/h"
"mhtml/starter-template/database" "github.com/maddalax/mhtml/starter-template/database"
"time" "time"
) )