1
0
mirror of https://github.com/jhillyerd/inbucket.git synced 2025-12-17 17:47:03 +00:00
Files
go-inbucket/app/controllers/app.go
James Hillyerd be97a4528f revel skeleton
2012-10-06 20:27:00 -07:00

12 lines
164 B
Go

package controllers
import "github.com/robfig/revel"
type Application struct {
*rev.Controller
}
func (c Application) Index() rev.Result {
return c.Render()
}