newsbot-portal/internal/handlers/home.go

12 lines
242 B
Go
Raw Normal View History

2024-05-11 09:56:19 -07:00
package handlers
import (
"net/http"
"git.jamestombleson.com/jtom38/newsbot-portal/internal/views/home"
"github.com/labstack/echo/v4"
)
func (h *Handler) HomeIndex(c echo.Context) error {
return Render(c, http.StatusOK, home.Index())
}