From faa303a45cfcaeb5cefac4073a33f4cd55d4c58d Mon Sep 17 00:00:00 2001 From: dilap54 Date: Tue, 14 Jan 2025 21:08:33 +0300 Subject: [PATCH] rename fork --- README.md | 4 ++-- cmd/example/main.go | 2 +- cmd/goutubedl/main.go | 2 +- go.mod | 2 +- goutubedl_test.go | 2 +- 5 files changed, 6 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index bc828d6..15100f9 100644 --- a/README.md +++ b/README.md @@ -4,7 +4,7 @@ Go wrapper for [youtube-dl](https://github.com/ytdl-org/youtube-dl) and [yt-dlp](https://github.com/yt-dlp/yt-dlp). Currently only tested and developed using yt-dlp. -API documentation can be found at [godoc.org](https://pkg.go.dev/github.com/wader/goutubedl?tab=doc). +API documentation can be found at [godoc.org](https://pkg.go.dev/gitea.kaz62.ru/dilap54/goutubedl?tab=doc). See [yt-dlp documentation](https://github.com/yt-dlp/yt-dlp) for how to install and what is recommended to install in addition to yt-dl. @@ -27,7 +27,7 @@ import ( "log" "os" - "github.com/wader/goutubedl" + "gitea.kaz62.ru/dilap54/goutubedl" ) func main() { diff --git a/cmd/example/main.go b/cmd/example/main.go index e7a40f8..69ad282 100644 --- a/cmd/example/main.go +++ b/cmd/example/main.go @@ -6,7 +6,7 @@ import ( "log" "os" - "github.com/wader/goutubedl" + "gitea.kaz62.ru/dilap54/goutubedl" ) func main() { diff --git a/cmd/goutubedl/main.go b/cmd/goutubedl/main.go index 1ec1418..ad5da53 100644 --- a/cmd/goutubedl/main.go +++ b/cmd/goutubedl/main.go @@ -9,7 +9,7 @@ import ( "os" "os/exec" - "github.com/wader/goutubedl" + "gitea.kaz62.ru/dilap54/goutubedl" ) var dumpFlag = flag.Bool("J", false, "Dump JSON") diff --git a/go.mod b/go.mod index 89f2874..e14ed6c 100644 --- a/go.mod +++ b/go.mod @@ -1,4 +1,4 @@ -module github.com/wader/goutubedl +module gitea.kaz62.ru/dilap54/goutubedl go 1.12 diff --git a/goutubedl_test.go b/goutubedl_test.go index 4fe291d..b73b747 100644 --- a/goutubedl_test.go +++ b/goutubedl_test.go @@ -16,8 +16,8 @@ import ( "strings" "testing" + "gitea.kaz62.ru/dilap54/goutubedl" "github.com/fortytw2/leaktest" - "github.com/wader/goutubedl" "github.com/wader/osleaktest" )