diff options
author | Matthias Loibl <mail@matthiasloibl.com> | 2016-11-05 17:56:35 +0100 |
---|---|---|
committer | Matthias Loibl <mail@matthiasloibl.com> | 2016-11-05 17:56:35 +0100 |
commit | 1f44b01e2a21b0e715dfd2ccad4574433c8775c3 (patch) | |
tree | 95959543a495b95b943dfeecad17668ea76dd6b2 /modules/context/context.go | |
parent | 91b589f2f0fb93f9f9882426c43c363276d2235a (diff) | |
download | gitea-1f44b01e2a21b0e715dfd2ccad4574433c8775c3.tar.gz gitea-1f44b01e2a21b0e715dfd2ccad4574433c8775c3.zip |
Fix imports found by goimports.
Diffstat (limited to 'modules/context/context.go')
-rw-r--r-- | modules/context/context.go | 11 |
1 files changed, 5 insertions, 6 deletions
diff --git a/modules/context/context.go b/modules/context/context.go index 82e3cbf27b..9395880d02 100644 --- a/modules/context/context.go +++ b/modules/context/context.go @@ -12,17 +12,16 @@ import ( "strings" "time" - "github.com/go-macaron/cache" - "github.com/go-macaron/csrf" - "github.com/go-macaron/i18n" - "github.com/go-macaron/session" - "gopkg.in/macaron.v1" - "github.com/go-gitea/gitea/models" "github.com/go-gitea/gitea/modules/auth" "github.com/go-gitea/gitea/modules/base" "github.com/go-gitea/gitea/modules/log" "github.com/go-gitea/gitea/modules/setting" + "github.com/go-macaron/cache" + "github.com/go-macaron/csrf" + "github.com/go-macaron/i18n" + "github.com/go-macaron/session" + macaron "gopkg.in/macaron.v1" ) // Context represents context of a request. |