diff options
author | Lunny Xiao <xiaolunwen@gmail.com> | 2019-11-10 12:41:51 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-11-10 12:41:51 +0800 |
commit | daab2451676b1a3a5312af0e2a443e6017113702 (patch) | |
tree | b0ee4405a3b9459051537e3e258fd0fafe9100b7 /routers/api/v1/repo/git_hook.go | |
parent | 1b7402bd1dfcf7435c2c2345aab1c43d6b0186ca (diff) | |
download | gitea-daab2451676b1a3a5312af0e2a443e6017113702.tar.gz gitea-daab2451676b1a3a5312af0e2a443e6017113702.zip |
Move code.gitea.io/gitea/routers/api/v1/convert to code.gitea.io/gitea/modules/convert (#8892)
* Move code.gitea.io/gitea/routers/api/v1/convert to code.gitea.io/gitea/modules/convert
* fix fmt
Diffstat (limited to 'routers/api/v1/repo/git_hook.go')
-rw-r--r-- | routers/api/v1/repo/git_hook.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/routers/api/v1/repo/git_hook.go b/routers/api/v1/repo/git_hook.go index 80610356dd..46651ef614 100644 --- a/routers/api/v1/repo/git_hook.go +++ b/routers/api/v1/repo/git_hook.go @@ -6,9 +6,9 @@ package repo import ( "code.gitea.io/gitea/modules/context" + "code.gitea.io/gitea/modules/convert" "code.gitea.io/gitea/modules/git" api "code.gitea.io/gitea/modules/structs" - "code.gitea.io/gitea/routers/api/v1/convert" ) // ListGitHooks list all Git hooks of a repository |