refactor: move session management to dedicated database module

This commit is contained in:
Prad Nukala
2024-12-10 13:40:41 -05:00
parent 518109e9df
commit c67a7823a6
16 changed files with 39 additions and 57 deletions
+1 -1
View File
@@ -6,6 +6,6 @@ import (
"github.com/labstack/echo/v4"
)
func HandleDash(c echo.Context) error {
func Handler(c echo.Context) error {
return c.Render(http.StatusOK, "index.templ", nil)
}