gitea/routers/dashboard.go

16 lines
342 B
Go
Raw Normal View History

2014-02-12 18:49:46 +01:00
// Copyright 2014 The Gogs Authors. All rights reserved.
// Use of this source code is governed by a MIT-style
// license that can be found in the LICENSE file.
package routers
2014-02-12 20:54:09 +01:00
import (
"github.com/martini-contrib/render"
)
2014-02-15 02:14:22 +01:00
func Dashboard(r render.Render) {
r.HTML(200, "dashboard", map[string]interface{}{
"Title": "Dashboard",
})
2014-02-12 18:49:46 +01:00
}