From 6c0c6145c8d68e7a0832164454d155ab7fc60435 Mon Sep 17 00:00:00 2001 From: Michael Robinson Date: Sun, 8 Jan 2017 21:04:31 -0700 Subject: [PATCH] Changed import path --- README.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index 0864037..181f389 100644 --- a/README.md +++ b/README.md @@ -3,7 +3,7 @@ > newznab XML API client for Go (golang) ## Documentation -https://godoc.org/github.com/tehjojo/go-newznab/newznab +https://godoc.org/github.com/mrobinsn/go-newznab/newznab ## Features - TV and Movie search @@ -13,8 +13,8 @@ https://godoc.org/github.com/tehjojo/go-newznab/newznab - Download NZB ## Installation -To install the package run `go get github.com/tehjojo/go-newznab` -To use it in your application, import `github.com/tehjojo/go-newznab/newznab` +To install the package run `go get github.com/mrobinsn/go-newznab` +To use it in your application, import `github.com/mrobinsn/go-newznab/newznab` ## Library Usage @@ -29,7 +29,7 @@ Search using a tvrage id: categories := []int{ newznab.CategoryTVHD, newznab.CategoryTVSD, -} +} results, _ := client.SearchWithTVRage(categories, 35048, 3, 1) ``` @@ -38,7 +38,7 @@ Search using an imdb id: categories := []int{ newznab.CategoryMovieHD, newznab.CategoryMovieBluRay, -} +} results, _ := client.SearchWithIMDB(categories, "0364569") ```