diff options
author | Tamal Saha <tamal@appscode.com> | 2019-08-23 09:40:30 -0700 |
---|---|---|
committer | techknowlogick <techknowlogick@gitea.io> | 2019-08-23 12:40:29 -0400 |
commit | 171b3598778a1ecd0a921c71ed6755bfef68f7f0 (patch) | |
tree | 02857629ef9e8e26ee0ee559153f803f77b588b7 /routers/repo | |
parent | ca6fb004ac50fc924861112403895d637c6a2d1d (diff) | |
download | gitea-171b3598778a1ecd0a921c71ed6755bfef68f7f0.tar.gz gitea-171b3598778a1ecd0a921c71ed6755bfef68f7f0.zip |
Use gitea forked macaron (#7933)
Signed-off-by: Tamal Saha <tamal@appscode.com>
Diffstat (limited to 'routers/repo')
-rw-r--r-- | routers/repo/editor_test.go | 4 | ||||
-rw-r--r-- | routers/repo/issue.go | 2 | ||||
-rw-r--r-- | routers/repo/pull.go | 2 | ||||
-rw-r--r-- | routers/repo/repo.go | 2 | ||||
-rw-r--r-- | routers/repo/setting.go | 2 | ||||
-rw-r--r-- | routers/repo/webhook.go | 2 |
6 files changed, 7 insertions, 7 deletions
diff --git a/routers/repo/editor_test.go b/routers/repo/editor_test.go index 7a68ecc9b7..ca00be74b7 100644 --- a/routers/repo/editor_test.go +++ b/routers/repo/editor_test.go @@ -5,11 +5,11 @@ package repo import ( - "code.gitea.io/gitea/modules/git" - "code.gitea.io/gitea/modules/test" "testing" "code.gitea.io/gitea/models" + "code.gitea.io/gitea/modules/git" + "code.gitea.io/gitea/modules/test" "github.com/stretchr/testify/assert" ) diff --git a/routers/repo/issue.go b/routers/repo/issue.go index 72e0357e6c..564a0eab09 100644 --- a/routers/repo/issue.go +++ b/routers/repo/issue.go @@ -27,7 +27,7 @@ import ( api "code.gitea.io/gitea/modules/structs" "code.gitea.io/gitea/modules/util" - "github.com/Unknwon/com" + "github.com/unknwon/com" ) const ( diff --git a/routers/repo/pull.go b/routers/repo/pull.go index cb4fa9547e..01a57f04e4 100644 --- a/routers/repo/pull.go +++ b/routers/repo/pull.go @@ -25,7 +25,7 @@ import ( "code.gitea.io/gitea/modules/setting" "code.gitea.io/gitea/modules/util" - "github.com/Unknwon/com" + "github.com/unknwon/com" ) const ( diff --git a/routers/repo/repo.go b/routers/repo/repo.go index 8c63d73b38..53244f304c 100644 --- a/routers/repo/repo.go +++ b/routers/repo/repo.go @@ -21,7 +21,7 @@ import ( "code.gitea.io/gitea/modules/setting" "code.gitea.io/gitea/modules/util" - "github.com/Unknwon/com" + "github.com/unknwon/com" ) const ( diff --git a/routers/repo/setting.go b/routers/repo/setting.go index 38c6ecf56e..3dc5a1e099 100644 --- a/routers/repo/setting.go +++ b/routers/repo/setting.go @@ -25,7 +25,7 @@ import ( "code.gitea.io/gitea/modules/validation" "code.gitea.io/gitea/routers/utils" - "github.com/Unknwon/com" + "github.com/unknwon/com" "mvdan.cc/xurls/v2" ) diff --git a/routers/repo/webhook.go b/routers/repo/webhook.go index 20a3a45c18..d523fd9e87 100644 --- a/routers/repo/webhook.go +++ b/routers/repo/webhook.go @@ -20,7 +20,7 @@ import ( "code.gitea.io/gitea/modules/setting" api "code.gitea.io/gitea/modules/structs" - "github.com/Unknwon/com" + "github.com/unknwon/com" ) const ( |