mirror of
https://github.com/sonr-io/sonr.git
synced 2026-08-02 17:31:39 +00:00
12 lines
165 B
Go
12 lines
165 B
Go
package handlers
|
|
|
|
import (
|
|
"net/http"
|
|
|
|
"github.com/labstack/echo/v4"
|
|
)
|
|
|
|
func Handler(c echo.Context) error {
|
|
return c.Render(http.StatusOK, "index.templ", nil)
|
|
}
|