refactor: move vault package to app directory

This commit is contained in:
Prad Nukala
2024-12-09 18:39:57 -05:00
parent c158904efc
commit e3b8f2cffe
46 changed files with 15 additions and 15 deletions
+11
View File
@@ -0,0 +1,11 @@
package handlers
import (
"net/http"
"github.com/labstack/echo/v4"
)
func HandleDash(c echo.Context) error {
return c.Render(http.StatusOK, "index.templ", nil)
}