Skip to content

Commit ced24a5

Browse files
author
Alex Zamai
committed
migrate to my github repo for release
1 parent 6c1750e commit ced24a5

File tree

97 files changed

+188
-188
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

97 files changed

+188
-188
lines changed

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ ARG commit
33
ARG commitDate
44
ARG version
55

6-
ENV MOD="github.com/eat-pray-ai/yutu/cmd"
6+
ENV MOD="github.com/zamai/yutu/cmd"
77
WORKDIR /app
88
COPY . .
99

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ go install github.com/eat-pray-ai/yutu@latest
8686
### Linux
8787

8888
```shell
89-
curl -sSfL https://github.com/eat-pray-ai/yutu/releases/latest/download/yutu-linux-$(uname -m) -o /usr/local/bin/yutu
89+
curl -sSfL https://github.com/zamai/yutu/releases/latest/download/yutu-linux-$(uname -m) -o /usr/local/bin/yutu
9090
chmod +x /usr/local/bin/yutu
9191
```
9292

@@ -95,7 +95,7 @@ chmod +x /usr/local/bin/yutu
9595
Homebrew is not available since this repository is not notable enough, star this repository to make it available on Homebrew.
9696

9797
```shell
98-
curl -sSfL https://github.com/eat-pray-ai/yutu/releases/latest/download/yutu-darwin-$(uname -m) -o /usr/local/bin/yutu
98+
curl -sSfL https://github.com/zamai/yutu/releases/latest/download/yutu-darwin-$(uname -m) -o /usr/local/bin/yutu
9999
chmod +x /usr/local/bin/yutu
100100
```
101101

cmd/activity/activity.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
package activity
22

33
import (
4-
"github.com/eat-pray-ai/yutu/cmd"
54
"github.com/spf13/cobra"
5+
"github.com/zamai/yutu/cmd"
66
)
77

88
var (

cmd/activity/list.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
package activity
22

33
import (
4-
"github.com/eat-pray-ai/yutu/pkg/activity"
5-
"github.com/eat-pray-ai/yutu/pkg/auth"
64
"github.com/spf13/cobra"
5+
"github.com/zamai/yutu/pkg/activity"
6+
"github.com/zamai/yutu/pkg/auth"
77
)
88

99
var listCmd = &cobra.Command{

cmd/auth.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
package cmd
22

33
import (
4-
"github.com/eat-pray-ai/yutu/pkg/auth"
54
"github.com/spf13/cobra"
5+
"github.com/zamai/yutu/pkg/auth"
66
)
77

88
var (

cmd/caption/caption.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
package caption
22

33
import (
4-
"github.com/eat-pray-ai/yutu/cmd"
54
"github.com/spf13/cobra"
5+
"github.com/zamai/yutu/cmd"
66
)
77

88
var (

cmd/caption/delete.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
package caption
22

33
import (
4-
"github.com/eat-pray-ai/yutu/pkg/auth"
5-
"github.com/eat-pray-ai/yutu/pkg/caption"
64
"github.com/spf13/cobra"
5+
"github.com/zamai/yutu/pkg/auth"
6+
"github.com/zamai/yutu/pkg/caption"
77
)
88

99
var deleteCmd = &cobra.Command{

cmd/caption/download.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
package caption
22

33
import (
4-
"github.com/eat-pray-ai/yutu/pkg/auth"
5-
"github.com/eat-pray-ai/yutu/pkg/caption"
64
"github.com/spf13/cobra"
5+
"github.com/zamai/yutu/pkg/auth"
6+
"github.com/zamai/yutu/pkg/caption"
77
)
88

99
var downloadCmd = &cobra.Command{

cmd/caption/insert.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
package caption
22

33
import (
4-
"github.com/eat-pray-ai/yutu/pkg/auth"
5-
"github.com/eat-pray-ai/yutu/pkg/caption"
64
"github.com/spf13/cobra"
5+
"github.com/zamai/yutu/pkg/auth"
6+
"github.com/zamai/yutu/pkg/caption"
77
)
88

99
var insertCmd = &cobra.Command{

cmd/caption/list.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
package caption
22

33
import (
4-
"github.com/eat-pray-ai/yutu/pkg/auth"
5-
"github.com/eat-pray-ai/yutu/pkg/caption"
64
"github.com/spf13/cobra"
5+
"github.com/zamai/yutu/pkg/auth"
6+
"github.com/zamai/yutu/pkg/caption"
77
)
88

99
var listCmd = &cobra.Command{

0 commit comments

Comments
 (0)