diff options
author | Unknwon <u@gogs.io> | 2015-10-15 21:28:12 -0400 |
---|---|---|
committer | Unknwon <u@gogs.io> | 2015-10-15 21:28:12 -0400 |
commit | 932dbccb6738b2894e4faafce4f834ef6803efc6 (patch) | |
tree | 14cd0a6cbce5906ce394491bd00e1f790be1dcc7 /modules/auth | |
parent | a749e6adcf97d21e8fd64cdf92de52a1ada68f6d (diff) | |
download | gitea-932dbccb6738b2894e4faafce4f834ef6803efc6.tar.gz gitea-932dbccb6738b2894e4faafce4f834ef6803efc6.zip |
fix import path, fix #1782
Diffstat (limited to 'modules/auth')
-rw-r--r-- | modules/auth/admin.go | 4 | ||||
-rw-r--r-- | modules/auth/apiv1/miscellaneous.go | 4 | ||||
-rw-r--r-- | modules/auth/auth.go | 6 | ||||
-rw-r--r-- | modules/auth/auth_form.go | 4 | ||||
-rw-r--r-- | modules/auth/org.go | 4 | ||||
-rw-r--r-- | modules/auth/repo_form.go | 4 | ||||
-rw-r--r-- | modules/auth/user_form.go | 4 |
7 files changed, 15 insertions, 15 deletions
diff --git a/modules/auth/admin.go b/modules/auth/admin.go index a4aa67ff9b..c2d47a44fd 100644 --- a/modules/auth/admin.go +++ b/modules/auth/admin.go @@ -5,9 +5,9 @@ package auth import ( - "github.com/Unknwon/macaron" + "gopkg.in/macaron.v1" - "github.com/macaron-contrib/binding" + "github.com/go-macaron/binding" ) type AdminCrateUserForm struct { diff --git a/modules/auth/apiv1/miscellaneous.go b/modules/auth/apiv1/miscellaneous.go index e05b48381f..5032f0ac71 100644 --- a/modules/auth/apiv1/miscellaneous.go +++ b/modules/auth/apiv1/miscellaneous.go @@ -7,8 +7,8 @@ package apiv1 import ( "reflect" - "github.com/Unknwon/macaron" - "github.com/macaron-contrib/binding" + "github.com/go-macaron/binding" + "gopkg.in/macaron.v1" "github.com/gogits/gogs/modules/auth" ) diff --git a/modules/auth/auth.go b/modules/auth/auth.go index ecae5b06b0..f144899b3c 100644 --- a/modules/auth/auth.go +++ b/modules/auth/auth.go @@ -10,9 +10,9 @@ import ( "time" "github.com/Unknwon/com" - "github.com/Unknwon/macaron" - "github.com/macaron-contrib/binding" - "github.com/macaron-contrib/session" + "github.com/go-macaron/binding" + "github.com/go-macaron/session" + "gopkg.in/macaron.v1" "github.com/gogits/gogs/models" "github.com/gogits/gogs/modules/base" diff --git a/modules/auth/auth_form.go b/modules/auth/auth_form.go index 7ac47fcc3a..6f356344da 100644 --- a/modules/auth/auth_form.go +++ b/modules/auth/auth_form.go @@ -5,8 +5,8 @@ package auth import ( - "github.com/Unknwon/macaron" - "github.com/macaron-contrib/binding" + "github.com/go-macaron/binding" + "gopkg.in/macaron.v1" ) type AuthenticationForm struct { diff --git a/modules/auth/org.go b/modules/auth/org.go index 6d9a7269ec..0642d1cb7c 100644 --- a/modules/auth/org.go +++ b/modules/auth/org.go @@ -5,8 +5,8 @@ package auth import ( - "github.com/Unknwon/macaron" - "github.com/macaron-contrib/binding" + "github.com/go-macaron/binding" + "gopkg.in/macaron.v1" ) // ________ .__ __ .__ diff --git a/modules/auth/repo_form.go b/modules/auth/repo_form.go index 3a74bbe000..ac43ba5d96 100644 --- a/modules/auth/repo_form.go +++ b/modules/auth/repo_form.go @@ -5,8 +5,8 @@ package auth import ( - "github.com/Unknwon/macaron" - "github.com/macaron-contrib/binding" + "github.com/go-macaron/binding" + "gopkg.in/macaron.v1" ) // _______________________________________ _________.______________________ _______________.___. diff --git a/modules/auth/user_form.go b/modules/auth/user_form.go index 53f5fb15c6..88d6dd9fba 100644 --- a/modules/auth/user_form.go +++ b/modules/auth/user_form.go @@ -7,8 +7,8 @@ package auth import ( "mime/multipart" - "github.com/Unknwon/macaron" - "github.com/macaron-contrib/binding" + "github.com/go-macaron/binding" + "gopkg.in/macaron.v1" ) type InstallForm struct { |