Skip to content

Commit

Permalink
rename owner (#9)
Browse files Browse the repository at this point in the history
  • Loading branch information
ringsaturn authored Oct 29, 2021
1 parent c2dd0ed commit 6fbcc31
Show file tree
Hide file tree
Showing 11 changed files with 13 additions and 13 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion backends/caiyun.go
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ import (
"strings"
"time"

"github.com/ringsaturn/wego/iface"
"github.com/caiyunapp/wego/iface"
)

const (
Expand Down
2 changes: 1 addition & 1 deletion backends/forecast.io.go
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ import (
"regexp"
"time"

"github.com/ringsaturn/wego/iface"
"github.com/caiyunapp/wego/iface"
)

type forecastConfig struct {
Expand Down
2 changes: 1 addition & 1 deletion backends/json.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import (
"io/ioutil"
"log"

"github.com/ringsaturn/wego/iface"
"github.com/caiyunapp/wego/iface"
)

type jsnConfig struct {
Expand Down
2 changes: 1 addition & 1 deletion backends/openweathermap.org.go
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ import (
"strings"
"time"

"github.com/ringsaturn/wego/iface"
"github.com/caiyunapp/wego/iface"
)

type openWeatherConfig struct {
Expand Down
2 changes: 1 addition & 1 deletion backends/worldweatheronline.com.go
Original file line number Diff line number Diff line change
Expand Up @@ -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 {
Expand Down
2 changes: 1 addition & 1 deletion frontends/ascii-art-table.go
Original file line number Diff line number Diff line change
Expand Up @@ -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 {
Expand Down
2 changes: 1 addition & 1 deletion frontends/emoji.go
Original file line number Diff line number Diff line change
Expand Up @@ -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 {
Expand Down
2 changes: 1 addition & 1 deletion frontends/json.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import (
"log"
"os"

"github.com/ringsaturn/wego/iface"
"github.com/caiyunapp/wego/iface"
)

type jsnConfig struct {
Expand Down
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
module github.com/ringsaturn/wego
module github.com/caiyunapp/wego

go 1.17

Expand Down
6 changes: 3 additions & 3 deletions main.go
Original file line number Diff line number Diff line change
Expand Up @@ -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"
)

Expand Down

0 comments on commit 6fbcc31

Please sign in to comment.