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/org/teams.go | |
parent | ba151eda0a8b6eec2cb45f01fcbc8aef7ad5a06f (diff) |
Refactoring: rename pkg/base -> pkg/tool
Diffstat (limited to 'routers/org/teams.go')
-rw-r--r-- | routers/org/teams.go | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/routers/org/teams.go b/routers/org/teams.go index ba40c6d4..54e2fe72 100644 --- a/routers/org/teams.go +++ b/routers/org/teams.go @@ -12,16 +12,16 @@ import ( "github.com/gogits/gogs/models" "github.com/gogits/gogs/models/errors" - "github.com/gogits/gogs/pkg/base" + "github.com/gogits/gogs/pkg/tool" "github.com/gogits/gogs/pkg/context" "github.com/gogits/gogs/pkg/form" ) const ( - TEAMS base.TplName = "org/team/teams" - TEAM_NEW base.TplName = "org/team/new" - TEAM_MEMBERS base.TplName = "org/team/members" - TEAM_REPOSITORIES base.TplName = "org/team/repositories" + TEAMS tool.TplName = "org/team/teams" + TEAM_NEW tool.TplName = "org/team/new" + TEAM_MEMBERS tool.TplName = "org/team/members" + TEAM_REPOSITORIES tool.TplName = "org/team/repositories" ) func Teams(ctx *context.Context) { |