diff options
author | Lunny Xiao <xiaolunwen@gmail.com> | 2016-11-04 00:11:08 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-11-04 00:11:08 +0800 |
commit | 1adde07a3fc4a43ec3d5829dc3e5ba9587584f77 (patch) | |
tree | 5718e7f30d625d25a61368453830cac17a8b1e6f /cmd/web.go | |
parent | 8ea63f8c506410d09e6b8b0dbcb102271bd9cbbe (diff) | |
parent | 42a744d9e61168765f97884a8efec13cd3fedff7 (diff) | |
download | gitea-1adde07a3fc4a43ec3d5829dc3e5ba9587584f77.tar.gz gitea-1adde07a3fc4a43ec3d5829dc3e5ba9587584f77.zip |
Merge branch 'master' into fix/3743-route-regexp-branchname
Diffstat (limited to 'cmd/web.go')
-rw-r--r-- | cmd/web.go | 28 |
1 files changed, 14 insertions, 14 deletions
diff --git a/cmd/web.go b/cmd/web.go index a3a214e19d..d5dae5badc 100644 --- a/cmd/web.go +++ b/cmd/web.go @@ -32,20 +32,20 @@ import ( "github.com/gogits/git-module" "github.com/gogits/go-gogs-client" - "github.com/gogits/gogs/models" - "github.com/gogits/gogs/modules/auth" - "github.com/gogits/gogs/modules/bindata" - "github.com/gogits/gogs/modules/context" - "github.com/gogits/gogs/modules/log" - "github.com/gogits/gogs/modules/setting" - "github.com/gogits/gogs/modules/template" - "github.com/gogits/gogs/routers" - "github.com/gogits/gogs/routers/admin" - apiv1 "github.com/gogits/gogs/routers/api/v1" - "github.com/gogits/gogs/routers/dev" - "github.com/gogits/gogs/routers/org" - "github.com/gogits/gogs/routers/repo" - "github.com/gogits/gogs/routers/user" + "github.com/go-gitea/gitea/models" + "github.com/go-gitea/gitea/modules/auth" + "github.com/go-gitea/gitea/modules/bindata" + "github.com/go-gitea/gitea/modules/context" + "github.com/go-gitea/gitea/modules/log" + "github.com/go-gitea/gitea/modules/setting" + "github.com/go-gitea/gitea/modules/template" + "github.com/go-gitea/gitea/routers" + "github.com/go-gitea/gitea/routers/admin" + apiv1 "github.com/go-gitea/gitea/routers/api/v1" + "github.com/go-gitea/gitea/routers/dev" + "github.com/go-gitea/gitea/routers/org" + "github.com/go-gitea/gitea/routers/repo" + "github.com/go-gitea/gitea/routers/user" ) var CmdWeb = cli.Command{ |