mirror of
https://github.com/kevin-DL/revel-cmd.git
synced 2026-01-17 04:54:52 +00:00
12 lines
151 B
Go
12 lines
151 B
Go
package controllers
|
|
|
|
import "github.com/revel/revel"
|
|
|
|
type App struct {
|
|
*revel.Controller
|
|
}
|
|
|
|
func (c App) Index() revel.Result {
|
|
return c.Render()
|
|
}
|