github.com/rotblauer/buffalo@v0.7.1-0.20170112214545-7aa55ef80dd3/examples/hello-world/actions/home.go (about)

     1  package actions
     2  
     3  import "github.com/gobuffalo/buffalo"
     4  
     5  func HomeHandler(c buffalo.Context) error {
     6  	return c.Render(200, r.HTML("index.html"))
     7  }