Initial commit

This commit is contained in:
2018-04-21 17:54:57 +02:00
parent af5865c0ab
commit 23997e7370
3 changed files with 71 additions and 0 deletions

10
main.go Normal file
View File

@@ -0,0 +1,10 @@
package main
import "fmt"
func main() {
fmt.Println("ytbatchdownloader")
batch := NewBatch("./dl.txt", "./output")
batch.Start()
}