diff options
author | Lunny Xiao <xiaolunwen@gmail.com> | 2019-11-18 13:18:33 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-11-18 13:18:33 +0800 |
commit | 9ff63126274b0df6e035541eafd48970c402e61e (patch) | |
tree | a2ebe40b70d1cdd4ca9e328ad21909b7a0baff10 /routers | |
parent | ba4e8f221bea0ab40a27da03c7fe3f0f78f6b790 (diff) | |
download | gitea-9ff63126274b0df6e035541eafd48970c402e61e.tar.gz gitea-9ff63126274b0df6e035541eafd48970c402e61e.zip |
Move modules/gzip to gitea.com/macaron/gzip (#9058)
* Move modules/gzip to gitea.com/macaron/gzip
* Fix vendor
Diffstat (limited to 'routers')
-rw-r--r-- | routers/routes/routes.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/routers/routes/routes.go b/routers/routes/routes.go index 48bba16bf6..6de293c507 100644 --- a/routers/routes/routes.go +++ b/routers/routes/routes.go @@ -16,7 +16,6 @@ import ( "code.gitea.io/gitea/models" "code.gitea.io/gitea/modules/auth" "code.gitea.io/gitea/modules/context" - "code.gitea.io/gitea/modules/gzip" "code.gitea.io/gitea/modules/lfs" "code.gitea.io/gitea/modules/log" "code.gitea.io/gitea/modules/metrics" @@ -44,6 +43,7 @@ import ( "gitea.com/macaron/captcha" "gitea.com/macaron/cors" "gitea.com/macaron/csrf" + "gitea.com/macaron/gzip" "gitea.com/macaron/i18n" "gitea.com/macaron/macaron" "gitea.com/macaron/session" |