summaryrefslogtreecommitdiffstats
path: root/routers
diff options
context:
space:
mode:
authorUnknown <joe2010xtmf@163.com>2014-03-07 17:22:15 -0500
committerUnknown <joe2010xtmf@163.com>2014-03-07 17:22:15 -0500
commit5a05d6633d413b1c5182a0a542e173f99601a103 (patch)
treeb6d343ca8c998909839d1364f466f7af223fdd1b /routers
parenta2a59f8ad1192d3504abd50b2daf2ebfd97c86ca (diff)
downloadgitea-5a05d6633d413b1c5182a0a542e173f99601a103.tar.gz
gitea-5a05d6633d413b1c5182a0a542e173f99601a103.zip
Merge utils to modules
Diffstat (limited to 'routers')
-rw-r--r--routers/repo/repo.go2
-rw-r--r--routers/user/ssh.go2
-rw-r--r--routers/user/user.go2
3 files changed, 3 insertions, 3 deletions
diff --git a/routers/repo/repo.go b/routers/repo/repo.go
index 6ff949b90f..e9ad7d1ab4 100644
--- a/routers/repo/repo.go
+++ b/routers/repo/repo.go
@@ -15,7 +15,7 @@ import (
"github.com/gogits/gogs/models"
"github.com/gogits/gogs/modules/auth"
"github.com/gogits/gogs/modules/base"
- "github.com/gogits/gogs/utils/log"
+ "github.com/gogits/gogs/modules/log"
)
func Create(req *http.Request, r render.Render, data base.TmplData, session sessions.Session) {
diff --git a/routers/user/ssh.go b/routers/user/ssh.go
index 6589753529..34c378061b 100644
--- a/routers/user/ssh.go
+++ b/routers/user/ssh.go
@@ -13,7 +13,7 @@ import (
"github.com/gogits/gogs/models"
"github.com/gogits/gogs/modules/auth"
"github.com/gogits/gogs/modules/base"
- "github.com/gogits/gogs/utils/log"
+ "github.com/gogits/gogs/modules/log"
)
func AddPublicKey(req *http.Request, data base.TmplData, r render.Render, session sessions.Session) {
diff --git a/routers/user/user.go b/routers/user/user.go
index 7eac9b7429..a07d79e454 100644
--- a/routers/user/user.go
+++ b/routers/user/user.go
@@ -14,7 +14,7 @@ import (
"github.com/gogits/gogs/models"
"github.com/gogits/gogs/modules/auth"
"github.com/gogits/gogs/modules/base"
- "github.com/gogits/gogs/utils/log"
+ "github.com/gogits/gogs/modules/log"
)
func Dashboard(r render.Render, data base.TmplData, session sessions.Session) {