summaryrefslogtreecommitdiffstats
path: root/modules/base/base.go
diff options
context:
space:
mode:
Diffstat (limited to 'modules/base/base.go')
-rw-r--r--modules/base/base.go10
1 files changed, 1 insertions, 9 deletions
diff --git a/modules/base/base.go b/modules/base/base.go
index 0d305ab453..967a78bfbe 100644
--- a/modules/base/base.go
+++ b/modules/base/base.go
@@ -4,17 +4,9 @@
package base
-import (
- "github.com/codegangsta/martini"
-)
+import ()
type (
// Type TmplData represents data in the templates.
TmplData map[string]interface{}
)
-
-func InitContext() martini.Handler {
- return func(context martini.Context) {
- context.Map(TmplData{})
- }
-}