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
+2 -2
View File
@@ -3,15 +3,15 @@ package gateway
import (
"github.com/labstack/echo/v4"
"github.com/onsonr/sonr/internal/gateway/config"
"github.com/onsonr/sonr/internal/gateway/context"
"github.com/onsonr/sonr/internal/gateway/handlers/index"
"github.com/onsonr/sonr/internal/gateway/handlers/register"
"github.com/onsonr/sonr/pkg/common/response"
config "github.com/onsonr/sonr/pkg/config/hway"
"gorm.io/gorm"
)
func RegisterRoutes(e *echo.Echo, env config.Env, db *gorm.DB) error {
func RegisterRoutes(e *echo.Echo, env config.Hway, db *gorm.DB) error {
// Custom error handler for gateway
e.HTTPErrorHandler = response.RedirectOnError("http://localhost:3000")