summaryrefslogtreecommitdiffstats
path: root/routers
diff options
context:
space:
mode:
authorUnknwon <u@gogs.io>2016-02-20 15:58:09 -0500
committerUnknwon <u@gogs.io>2016-02-20 15:58:09 -0500
commitd8a994ef243349f321568f9e36d5c3f444b99cae (patch)
tree09cab4dc4c1f585b91a40c594e9e0f7b8967944d /routers
parent7140dbac95a96849a7f82166439fd72a7b56f9bf (diff)
downloadgitea-d8a994ef243349f321568f9e36d5c3f444b99cae.tar.gz
gitea-d8a994ef243349f321568f9e36d5c3f444b99cae.zip
Move cron module to independent package
Make it easier to keep track of upstream changes and bug fixes
Diffstat (limited to 'routers')
-rw-r--r--routers/admin/admin.go2
-rw-r--r--routers/install.go2
2 files changed, 2 insertions, 2 deletions
diff --git a/routers/admin/admin.go b/routers/admin/admin.go
index 5d665adbad..27f2fa5b24 100644
--- a/routers/admin/admin.go
+++ b/routers/admin/admin.go
@@ -14,8 +14,8 @@ import (
"gopkg.in/macaron.v1"
"github.com/gogits/gogs/models"
- "github.com/gogits/gogs/models/cron"
"github.com/gogits/gogs/modules/base"
+ "github.com/gogits/gogs/modules/cron"
"github.com/gogits/gogs/modules/middleware"
"github.com/gogits/gogs/modules/process"
"github.com/gogits/gogs/modules/setting"
diff --git a/routers/install.go b/routers/install.go
index b8b7dec1e7..0a36b315f6 100644
--- a/routers/install.go
+++ b/routers/install.go
@@ -20,9 +20,9 @@ import (
"github.com/gogits/git-module"
"github.com/gogits/gogs/models"
- "github.com/gogits/gogs/models/cron"
"github.com/gogits/gogs/modules/auth"
"github.com/gogits/gogs/modules/base"
+ "github.com/gogits/gogs/modules/cron"
"github.com/gogits/gogs/modules/log"
"github.com/gogits/gogs/modules/mailer"
"github.com/gogits/gogs/modules/middleware"