feat: implement passkey-based authentication

This commit is contained in:
Prad Nukala
2024-12-10 13:12:08 -05:00
parent dc6f02a000
commit f366dd8cf2
35 changed files with 751 additions and 1039 deletions
@@ -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)
}