aboutsummaryrefslogtreecommitdiff
path: root/cmd
diff options
context:
space:
mode:
Diffstat (limited to 'cmd')
-rw-r--r--cmd/admin.go4
-rw-r--r--cmd/backup.go4
-rw-r--r--cmd/hook.go18
-rw-r--r--cmd/import.go2
-rw-r--r--cmd/restore.go4
-rw-r--r--cmd/serv.go8
-rw-r--r--cmd/web.go28
7 files changed, 34 insertions, 34 deletions
diff --git a/cmd/admin.go b/cmd/admin.go
index 52c4496d..d249fd07 100644
--- a/cmd/admin.go
+++ b/cmd/admin.go
@@ -11,8 +11,8 @@ import (
"github.com/urfave/cli"
- "github.com/gogits/gogs/models"
- "github.com/gogits/gogs/pkg/setting"
+ "github.com/gogs/gogs/models"
+ "github.com/gogs/gogs/pkg/setting"
)
var (
diff --git a/cmd/backup.go b/cmd/backup.go
index ffc9afbc..4ff62887 100644
--- a/cmd/backup.go
+++ b/cmd/backup.go
@@ -17,8 +17,8 @@ import (
log "gopkg.in/clog.v1"
"gopkg.in/ini.v1"
- "github.com/gogits/gogs/models"
- "github.com/gogits/gogs/pkg/setting"
+ "github.com/gogs/gogs/models"
+ "github.com/gogs/gogs/pkg/setting"
)
var Backup = cli.Command{
diff --git a/cmd/hook.go b/cmd/hook.go
index 16ea6b64..ec60ac05 100644
--- a/cmd/hook.go
+++ b/cmd/hook.go
@@ -19,15 +19,15 @@ import (
"github.com/urfave/cli"
log "gopkg.in/clog.v1"
- "github.com/gogits/git-module"
-
- "github.com/gogits/gogs/models"
- "github.com/gogits/gogs/models/errors"
- "github.com/gogits/gogs/pkg/httplib"
- "github.com/gogits/gogs/pkg/mailer"
- "github.com/gogits/gogs/pkg/setting"
- "github.com/gogits/gogs/pkg/template"
- http "github.com/gogits/gogs/routes/repo"
+ "github.com/gogs/git-module"
+
+ "github.com/gogs/gogs/models"
+ "github.com/gogs/gogs/models/errors"
+ "github.com/gogs/gogs/pkg/httplib"
+ "github.com/gogs/gogs/pkg/mailer"
+ "github.com/gogs/gogs/pkg/setting"
+ "github.com/gogs/gogs/pkg/template"
+ http "github.com/gogs/gogs/routes/repo"
)
var (
diff --git a/cmd/import.go b/cmd/import.go
index 726359ee..98aa7690 100644
--- a/cmd/import.go
+++ b/cmd/import.go
@@ -15,7 +15,7 @@ import (
"github.com/Unknwon/com"
"github.com/urfave/cli"
- "github.com/gogits/gogs/pkg/setting"
+ "github.com/gogs/gogs/pkg/setting"
)
var (
diff --git a/cmd/restore.go b/cmd/restore.go
index 19c26464..db81b8b0 100644
--- a/cmd/restore.go
+++ b/cmd/restore.go
@@ -15,8 +15,8 @@ import (
log "gopkg.in/clog.v1"
"gopkg.in/ini.v1"
- "github.com/gogits/gogs/models"
- "github.com/gogits/gogs/pkg/setting"
+ "github.com/gogs/gogs/models"
+ "github.com/gogs/gogs/pkg/setting"
)
var Restore = cli.Command{
diff --git a/cmd/serv.go b/cmd/serv.go
index dd4c1217..e34e8b10 100644
--- a/cmd/serv.go
+++ b/cmd/serv.go
@@ -16,10 +16,10 @@ import (
"github.com/urfave/cli"
log "gopkg.in/clog.v1"
- "github.com/gogits/gogs/models"
- "github.com/gogits/gogs/models/errors"
- "github.com/gogits/gogs/pkg/setting"
- http "github.com/gogits/gogs/routes/repo"
+ "github.com/gogs/gogs/models"
+ "github.com/gogs/gogs/models/errors"
+ "github.com/gogs/gogs/pkg/setting"
+ http "github.com/gogs/gogs/routes/repo"
)
const (
diff --git a/cmd/web.go b/cmd/web.go
index 9a709e1c..dc8937f9 100644
--- a/cmd/web.go
+++ b/cmd/web.go
@@ -29,20 +29,20 @@ import (
log "gopkg.in/clog.v1"
"gopkg.in/macaron.v1"
- "github.com/gogits/gogs/models"
- "github.com/gogits/gogs/pkg/bindata"
- "github.com/gogits/gogs/pkg/context"
- "github.com/gogits/gogs/pkg/form"
- "github.com/gogits/gogs/pkg/mailer"
- "github.com/gogits/gogs/pkg/setting"
- "github.com/gogits/gogs/pkg/template"
- "github.com/gogits/gogs/routes"
- "github.com/gogits/gogs/routes/admin"
- apiv1 "github.com/gogits/gogs/routes/api/v1"
- "github.com/gogits/gogs/routes/dev"
- "github.com/gogits/gogs/routes/org"
- "github.com/gogits/gogs/routes/repo"
- "github.com/gogits/gogs/routes/user"
+ "github.com/gogs/gogs/models"
+ "github.com/gogs/gogs/pkg/bindata"
+ "github.com/gogs/gogs/pkg/context"
+ "github.com/gogs/gogs/pkg/form"
+ "github.com/gogs/gogs/pkg/mailer"
+ "github.com/gogs/gogs/pkg/setting"
+ "github.com/gogs/gogs/pkg/template"
+ "github.com/gogs/gogs/routes"
+ "github.com/gogs/gogs/routes/admin"
+ apiv1 "github.com/gogs/gogs/routes/api/v1"
+ "github.com/gogs/gogs/routes/dev"
+ "github.com/gogs/gogs/routes/org"
+ "github.com/gogs/gogs/routes/repo"
+ "github.com/gogs/gogs/routes/user"
)
var Web = cli.Command{