refactor: migrate config package to pkg directory

This commit is contained in:
Prad Nukala
2024-12-11 12:24:04 -05:00
parent 0502f52ec0
commit d667c3c604
11 changed files with 9 additions and 9 deletions
+3 -3
View File
@@ -4,13 +4,13 @@ import (
"net/http"
"github.com/labstack/echo/v4"
"github.com/onsonr/sonr/internal/gateway/config"
config "github.com/onsonr/sonr/pkg/config/hway"
"github.com/onsonr/sonr/pkg/database/sessions"
"gorm.io/gorm"
)
// Middleware creates a new session middleware
func Middleware(db *gorm.DB, env config.Env) echo.MiddlewareFunc {
func Middleware(db *gorm.DB, env config.Hway) echo.MiddlewareFunc {
return func(next echo.HandlerFunc) echo.HandlerFunc {
return func(c echo.Context) error {
cc := NewHTTPContext(c, db)
@@ -27,7 +27,7 @@ type HTTPContext struct {
echo.Context
db *gorm.DB
sess *sessions.Session
env config.Env
env config.Hway
}
// Get returns the HTTPContext from the echo context