예제 #1
0
파일: app.go 프로젝트: Helstedxd/LoL-Replay
func (c App) Index() revel.Result {
	c.RenderArgs["games"] = history.GameList()
	return c.Render()
}
예제 #2
0
func (c App) GameIndex() revel.Result {
	c.RenderArgs["games"] = history.GameList()
	return c.Render("Game.html")
}