1
0
mirror of https://github.com/go-gitea/gitea.git synced 2024-05-11 05:55:29 +00:00

Init commit

This commit is contained in:
Unknown
2014-02-12 14:54:09 -05:00
parent 4836fea876
commit 96b317d3ff
8 changed files with 86 additions and 7 deletions

View File

@ -4,6 +4,10 @@
package routers
func HomeGet() string {
return "Hello world!"
import (
"github.com/martini-contrib/render"
)
func Home(r render.Render) {
r.HTML(200, "home", map[string]interface{}{})
}