18 lines
322 B
Go
18 lines
322 B
Go
package torrent_test
|
|
|
|
import (
|
|
"log"
|
|
|
|
"github.com/anacrolix/torrent"
|
|
)
|
|
|
|
func Example() {
|
|
c, _ := torrent.NewClient(&torrent.Config{})
|
|
defer c.Close()
|
|
t, _ := c.AddMagnet("magnet:?xt=urn:btih:ZOCMZQIPFFW7OLLMIC5HUB6BPCSDEOQU")
|
|
<-t.GotInfo()
|
|
t.DownloadAll()
|
|
c.WaitAll()
|
|
log.Print("ermahgerd, torrent downloaded")
|
|
}
|