summaryrefslogtreecommitdiffstats
path: root/cmd
diff options
context:
space:
mode:
authorMatthias Loibl <mail@matthiasloibl.com>2016-11-05 17:56:35 +0100
committerMatthias Loibl <mail@matthiasloibl.com>2016-11-05 17:56:35 +0100
commit1f44b01e2a21b0e715dfd2ccad4574433c8775c3 (patch)
tree95959543a495b95b943dfeecad17668ea76dd6b2 /cmd
parent91b589f2f0fb93f9f9882426c43c363276d2235a (diff)
downloadgitea-1f44b01e2a21b0e715dfd2ccad4574433c8775c3.tar.gz
gitea-1f44b01e2a21b0e715dfd2ccad4574433c8775c3.zip
Fix imports found by goimports.
Diffstat (limited to 'cmd')
-rw-r--r--cmd/web.go30
1 files changed, 13 insertions, 17 deletions
diff --git a/cmd/web.go b/cmd/web.go
index a43dae38f3..b110c855f4 100644
--- a/cmd/web.go
+++ b/cmd/web.go
@@ -15,23 +15,6 @@ import (
"path"
"strings"
- "github.com/go-macaron/binding"
- "github.com/go-macaron/cache"
- "github.com/go-macaron/captcha"
- "github.com/go-macaron/csrf"
- "github.com/go-macaron/gzip"
- "github.com/go-macaron/i18n"
- "github.com/go-macaron/session"
- "github.com/go-macaron/toolbox"
- "github.com/go-xorm/xorm"
- "github.com/mcuadros/go-version"
- "github.com/urfave/cli"
- "gopkg.in/ini.v1"
- "gopkg.in/macaron.v1"
-
- "github.com/gogits/git-module"
- "github.com/gogits/go-gogs-client"
-
"github.com/go-gitea/gitea/models"
"github.com/go-gitea/gitea/modules/auth"
"github.com/go-gitea/gitea/modules/bindata"
@@ -46,6 +29,19 @@ import (
"github.com/go-gitea/gitea/routers/org"
"github.com/go-gitea/gitea/routers/repo"
"github.com/go-gitea/gitea/routers/user"
+ "github.com/go-macaron/binding"
+ "github.com/go-macaron/cache"
+ "github.com/go-macaron/captcha"
+ "github.com/go-macaron/csrf"
+ "github.com/go-macaron/gzip"
+ "github.com/go-macaron/i18n"
+ "github.com/go-macaron/session"
+ "github.com/go-macaron/toolbox"
+ "github.com/go-xorm/xorm"
+ git "github.com/gogits/git-module"
+ "github.com/urfave/cli"
+ ini "gopkg.in/ini.v1"
+ macaron "gopkg.in/macaron.v1"
)
// CmdWeb represents the available web sub-command.