diff options
author | Unknwon <u@gogs.io> | 2017-04-05 09:05:40 -0400 |
---|---|---|
committer | Unknwon <u@gogs.io> | 2017-04-05 09:05:40 -0400 |
commit | 6fbb984ebf4f0d6804f0f83e6edb12ef0bb9a570 (patch) | |
tree | 81f08210cb3553370795ec11c731d37bb3590122 /routers/repo/branch.go | |
parent | ba151eda0a8b6eec2cb45f01fcbc8aef7ad5a06f (diff) |
Refactoring: rename pkg/base -> pkg/tool
Diffstat (limited to 'routers/repo/branch.go')
-rw-r--r-- | routers/repo/branch.go | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/routers/repo/branch.go b/routers/repo/branch.go index 786dc068..12b62507 100644 --- a/routers/repo/branch.go +++ b/routers/repo/branch.go @@ -12,13 +12,13 @@ import ( "github.com/gogits/git-module" "github.com/gogits/gogs/models" - "github.com/gogits/gogs/pkg/base" + "github.com/gogits/gogs/pkg/tool" "github.com/gogits/gogs/pkg/context" ) const ( - BRANCHES_OVERVIEW base.TplName = "repo/branches/overview" - BRANCHES_ALL base.TplName = "repo/branches/all" + BRANCHES_OVERVIEW tool.TplName = "repo/branches/overview" + BRANCHES_ALL tool.TplName = "repo/branches/all" ) type Branch struct { |