Files
sonr/internal/gateway/handlers/validate_credential.go
T

12 lines
233 B
Go
Raw Normal View History

package handlers
import (
"github.com/labstack/echo/v4"
)
// ValidateCredentialSubmit finds the user credential and validates it against the
// session challenge
func ValidateCredentialSubmit(c echo.Context) error {
return nil
}