1
0
Fork 0
forked from forgejo/forgejo

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{}{})
}