refactor: use htmx instead of dwn for vault client

This commit is contained in:
Prad Nukala
2024-09-25 20:11:30 -04:00
parent 7057332163
commit 0df3762f13
14 changed files with 53 additions and 58 deletions
-23
View File
@@ -1,23 +0,0 @@
package state
import (
"github.com/labstack/echo/v4"
)
func grantAuthorization(e echo.Context) error {
// Implement authorization endpoint using passkey authentication
// Store session data in cache
return nil
}
func getJWKS(e echo.Context) error {
// Implement token endpoint
// Use cached session data for validation
return nil
}
func getToken(e echo.Context) error {
// Implement token endpoint
// Use cached session data for validation
return nil
}