mirror of
https://github.com/jhillyerd/inbucket.git
synced 2025-12-17 17:47:03 +00:00
12 lines
164 B
Go
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()
|
|
}
|