diff --git a/README.md b/README.md index 82c93e4..e140e9e 100644 --- a/README.md +++ b/README.md @@ -28,7 +28,7 @@ To install or update the wego binary into your `$GOPATH` as usual, run: ```shell -go install github.com/ringsaturn/wego@latest +go install github.com/caiyunapp/wego@latest ``` ## Setup diff --git a/backends/caiyun.go b/backends/caiyun.go index 0147747..782c7b0 100644 --- a/backends/caiyun.go +++ b/backends/caiyun.go @@ -11,7 +11,7 @@ import ( "strings" "time" - "github.com/ringsaturn/wego/iface" + "github.com/caiyunapp/wego/iface" ) const ( diff --git a/backends/forecast.io.go b/backends/forecast.io.go index ba56030..9b48dab 100644 --- a/backends/forecast.io.go +++ b/backends/forecast.io.go @@ -10,7 +10,7 @@ import ( "regexp" "time" - "github.com/ringsaturn/wego/iface" + "github.com/caiyunapp/wego/iface" ) type forecastConfig struct { diff --git a/backends/json.go b/backends/json.go index 316359f..4dad569 100644 --- a/backends/json.go +++ b/backends/json.go @@ -5,7 +5,7 @@ import ( "io/ioutil" "log" - "github.com/ringsaturn/wego/iface" + "github.com/caiyunapp/wego/iface" ) type jsnConfig struct { diff --git a/backends/openweathermap.org.go b/backends/openweathermap.org.go index e28509e..f02ba28 100644 --- a/backends/openweathermap.org.go +++ b/backends/openweathermap.org.go @@ -11,7 +11,7 @@ import ( "strings" "time" - "github.com/ringsaturn/wego/iface" + "github.com/caiyunapp/wego/iface" ) type openWeatherConfig struct { diff --git a/backends/worldweatheronline.com.go b/backends/worldweatheronline.com.go index 5949696..0619d02 100644 --- a/backends/worldweatheronline.com.go +++ b/backends/worldweatheronline.com.go @@ -16,7 +16,7 @@ import ( // v1.4.2 or later is in debian stable and the latest Ubuntu LTS release. _ "crypto/sha512" - "github.com/ringsaturn/wego/iface" + "github.com/caiyunapp/wego/iface" ) type wwoCond struct { diff --git a/frontends/ascii-art-table.go b/frontends/ascii-art-table.go index 478861b..43107e9 100644 --- a/frontends/ascii-art-table.go +++ b/frontends/ascii-art-table.go @@ -10,9 +10,9 @@ import ( "strings" "time" + "github.com/caiyunapp/wego/iface" "github.com/mattn/go-colorable" "github.com/mattn/go-runewidth" - "github.com/ringsaturn/wego/iface" ) type aatConfig struct { diff --git a/frontends/emoji.go b/frontends/emoji.go index 0c72ef3..3466a49 100644 --- a/frontends/emoji.go +++ b/frontends/emoji.go @@ -6,9 +6,9 @@ import ( "math" "time" + "github.com/caiyunapp/wego/iface" colorable "github.com/mattn/go-colorable" runewidth "github.com/mattn/go-runewidth" - "github.com/ringsaturn/wego/iface" ) type emojiConfig struct { diff --git a/frontends/json.go b/frontends/json.go index f9fed1c..0b0b4d0 100644 --- a/frontends/json.go +++ b/frontends/json.go @@ -6,7 +6,7 @@ import ( "log" "os" - "github.com/ringsaturn/wego/iface" + "github.com/caiyunapp/wego/iface" ) type jsnConfig struct { diff --git a/go.mod b/go.mod index 050ecf7..44af2c6 100644 --- a/go.mod +++ b/go.mod @@ -1,4 +1,4 @@ -module github.com/ringsaturn/wego +module github.com/caiyunapp/wego go 1.17 diff --git a/main.go b/main.go index a5a9e4b..8d8055a 100644 --- a/main.go +++ b/main.go @@ -9,9 +9,9 @@ import ( "strconv" "strings" - _ "github.com/ringsaturn/wego/backends" - _ "github.com/ringsaturn/wego/frontends" - "github.com/ringsaturn/wego/iface" + _ "github.com/caiyunapp/wego/backends" + _ "github.com/caiyunapp/wego/frontends" + "github.com/caiyunapp/wego/iface" "github.com/schachmat/ingo" )