diff options
author | Unknwon <joe2010xtmf@163.com> | 2014-10-15 11:19:20 -0400 |
---|---|---|
committer | Unknwon <joe2010xtmf@163.com> | 2014-10-15 11:19:20 -0400 |
commit | fa241efa6d5e934f599e43714e970fa48c9a0f47 (patch) | |
tree | 0a9e74e4849758a5970fd52589e96662bc105600 /cmd | |
parent | ecf3eb4307c13c74d928656a140b7bb2ae804fd9 (diff) | |
download | gitea-fa241efa6d5e934f599e43714e970fa48c9a0f47.tar.gz gitea-fa241efa6d5e934f599e43714e970fa48c9a0f47.zip |
Use binding middleware
Diffstat (limited to 'cmd')
-rw-r--r-- | cmd/web.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cmd/web.go b/cmd/web.go index f5843f5f39..98a180a935 100644 --- a/cmd/web.go +++ b/cmd/web.go @@ -15,6 +15,7 @@ import ( "github.com/Unknwon/macaron" "github.com/codegangsta/cli" + "github.com/macaron-contrib/binding" "github.com/macaron-contrib/cache" "github.com/macaron-contrib/captcha" "github.com/macaron-contrib/csrf" @@ -30,7 +31,6 @@ import ( "github.com/gogits/gogs/modules/git" "github.com/gogits/gogs/modules/log" "github.com/gogits/gogs/modules/middleware" - "github.com/gogits/gogs/modules/middleware/binding" "github.com/gogits/gogs/modules/setting" "github.com/gogits/gogs/routers" "github.com/gogits/gogs/routers/admin" |