diff options
author | Sandro Santilli <strk@kbt.io> | 2016-11-06 14:18:34 +0100 |
---|---|---|
committer | Andrey Nering <andrey.nering@gmail.com> | 2016-11-06 14:18:34 +0100 |
commit | 6e4252dad4d162fb582c012efecd29e9fdf5819c (patch) | |
tree | 3aa10bee3fd9f96e042cd299f0d8756abc5dc431 /routers/repo/middlewares.go | |
parent | Adds checking of reserved keywords against team names (#22) (diff) | |
download | forgejo-6e4252dad4d162fb582c012efecd29e9fdf5819c.tar.xz forgejo-6e4252dad4d162fb582c012efecd29e9fdf5819c.zip |
Replace gogits/git-module dependency with go-gitea/git (#94)
* Replace gogits/git-module dependency with go-gitea/git
Fixes #92
* Remove git alias for git module import (not needed)
Diffstat (limited to 'routers/repo/middlewares.go')
-rw-r--r-- | routers/repo/middlewares.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/routers/repo/middlewares.go b/routers/repo/middlewares.go index 2d0ebe1039..02706dbdb3 100644 --- a/routers/repo/middlewares.go +++ b/routers/repo/middlewares.go @@ -5,7 +5,7 @@ import ( "github.com/go-gitea/gitea/models" "github.com/go-gitea/gitea/modules/context" - git "github.com/gogits/git-module" + "github.com/go-gitea/git" ) func SetEditorconfigIfExists(ctx *context.Context) { |