1
0
mirror of https://github.com/jhillyerd/inbucket.git synced 2025-12-18 10:07:02 +00:00

revel skeleton

This commit is contained in:
James Hillyerd
2012-10-06 20:27:00 -07:00
parent 7eacfb8fec
commit be97a4528f
10 changed files with 125 additions and 0 deletions

11
app/controllers/app.go Normal file
View File

@@ -0,0 +1,11 @@
package controllers
import "github.com/robfig/revel"
type Application struct {
*rev.Controller
}
func (c Application) Index() rev.Result {
return c.Render()
}