11 lines
137 B
Go
11 lines
137 B
Go
package main
|
|
|
|
import "fmt"
|
|
|
|
func main() {
|
|
fmt.Println("ytbatchdownloader")
|
|
|
|
batch := NewBatch("./dl.txt", "./output")
|
|
batch.Start()
|
|
}
|