diff --git a/qq.go b/qq.go index 7c7d207..e5eae17 100644 --- a/qq.go +++ b/qq.go @@ -3,9 +3,9 @@ package socialite import ( "errors" "fmt" + "github.com/birjemin/socialite/utils" jsoniter "github.com/json-iterator/go" "regexp" - "socialite/utils" "strconv" ) diff --git a/qq_test.go b/qq_test.go index a8a707f..7604721 100644 --- a/qq_test.go +++ b/qq_test.go @@ -1,10 +1,10 @@ package socialite import ( + "github.com/birjemin/socialite/utils" "github.com/stretchr/testify/assert" "net/http" "net/http/httptest" - "socialite/utils" "testing" "time" ) diff --git a/wechat.go b/wechat.go index 31350ae..8b13399 100644 --- a/wechat.go +++ b/wechat.go @@ -3,7 +3,7 @@ package socialite import ( "errors" "fmt" - "socialite/utils" + "github.com/birjemin/socialite/utils" ) const ( diff --git a/wechat_test.go b/wechat_test.go index 37444f3..4b3dc6b 100644 --- a/wechat_test.go +++ b/wechat_test.go @@ -1,10 +1,10 @@ package socialite import ( + "github.com/birjemin/socialite/utils" "github.com/stretchr/testify/assert" "net/http" "net/http/httptest" - "socialite/utils" "testing" "time" ) diff --git a/weibo.go b/weibo.go index f236935..2713697 100644 --- a/weibo.go +++ b/weibo.go @@ -3,7 +3,7 @@ package socialite import ( "errors" "fmt" - "socialite/utils" + "github.com/birjemin/socialite/utils" ) const ( diff --git a/weibo_test.go b/weibo_test.go index bdb9b45..dc77a48 100644 --- a/weibo_test.go +++ b/weibo_test.go @@ -1,10 +1,10 @@ package socialite import ( + "github.com/birjemin/socialite/utils" "github.com/stretchr/testify/assert" "net/http" "net/http/httptest" - "socialite/utils" "testing" "time" )