sonr/vault/handlers/index.go

12 lines
169 B
Go

package handlers
import (
"net/http"
"github.com/labstack/echo/v4"
)
func RenderIndex(c echo.Context) error {
return c.Render(http.StatusOK, "index.templ", nil)
}