Files
sonr/internal/vault/handlers/feeds/handlers.go
T

12 lines
165 B
Go
Raw Normal View History

2024-12-05 20:36:58 -05:00
package handlers
import (
"net/http"
"github.com/labstack/echo/v4"
)
func Handler(c echo.Context) error {
2024-12-05 20:36:58 -05:00
return c.Render(http.StatusOK, "index.templ", nil)
}