refactor: move vault package internal components to root

This commit is contained in:
Prad Nukala 2024-12-09 18:31:12 -05:00
parent 0ff4299061
commit 67432d3fdf
17 changed files with 2 additions and 2 deletions

View File

@ -5,8 +5,8 @@ import (
"github.com/labstack/echo/v4" "github.com/labstack/echo/v4"
"github.com/onsonr/sonr/pkg/common/response" "github.com/onsonr/sonr/pkg/common/response"
"github.com/onsonr/sonr/pkg/vault/internal/pages/index" session "github.com/onsonr/sonr/pkg/vault/internal"
"github.com/onsonr/sonr/pkg/vault/internal/session" "github.com/onsonr/sonr/pkg/vault/pages/index"
) )
func HandleIndex(c echo.Context) error { func HandleIndex(c echo.Context) error {