rename fork
Some checks failed
Build on push and PRs / build (push) Failing after 4s

This commit is contained in:
2025-01-14 21:08:33 +03:00
parent b534e45a9c
commit faa303a45c
5 changed files with 6 additions and 6 deletions

View File

@ -4,7 +4,7 @@ Go wrapper for
[youtube-dl](https://github.com/ytdl-org/youtube-dl) and [youtube-dl](https://github.com/ytdl-org/youtube-dl) and
[yt-dlp](https://github.com/yt-dlp/yt-dlp). [yt-dlp](https://github.com/yt-dlp/yt-dlp).
Currently only tested and developed using 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 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. install and what is recommended to install in addition to yt-dl.
@ -27,7 +27,7 @@ import (
"log" "log"
"os" "os"
"github.com/wader/goutubedl" "gitea.kaz62.ru/dilap54/goutubedl"
) )
func main() { func main() {

View File

@ -6,7 +6,7 @@ import (
"log" "log"
"os" "os"
"github.com/wader/goutubedl" "gitea.kaz62.ru/dilap54/goutubedl"
) )
func main() { func main() {

View File

@ -9,7 +9,7 @@ import (
"os" "os"
"os/exec" "os/exec"
"github.com/wader/goutubedl" "gitea.kaz62.ru/dilap54/goutubedl"
) )
var dumpFlag = flag.Bool("J", false, "Dump JSON") var dumpFlag = flag.Bool("J", false, "Dump JSON")

2
go.mod
View File

@ -1,4 +1,4 @@
module github.com/wader/goutubedl module gitea.kaz62.ru/dilap54/goutubedl
go 1.12 go 1.12

View File

@ -16,8 +16,8 @@ import (
"strings" "strings"
"testing" "testing"
"gitea.kaz62.ru/dilap54/goutubedl"
"github.com/fortytw2/leaktest" "github.com/fortytw2/leaktest"
"github.com/wader/goutubedl"
"github.com/wader/osleaktest" "github.com/wader/osleaktest"
) )