mirror of
https://github.com/onsonr/sonr.git
synced 2025-03-10 21:09:11 +00:00
12 lines
168 B
Go
12 lines
168 B
Go
package handlers
|
|
|
|
import (
|
|
"net/http"
|
|
|
|
"github.com/labstack/echo/v4"
|
|
)
|
|
|
|
func HandleDash(c echo.Context) error {
|
|
return c.Render(http.StatusOK, "index.templ", nil)
|
|
}
|