newsbox/actions/home.go
Adriano Caloiaro 8ae801ae5f
Initial commit
2023-02-15 08:57:48 -08:00

13 lines
249 B
Go

package actions
import (
"net/http"
"github.com/gobuffalo/buffalo"
)
// HomeHandler is a default handler to serve up
// a home page.
func HomeHandler(c buffalo.Context) error {
return c.Render(http.StatusOK, r.HTML("home/index.plush.html"))
}