Skip to content

Commit

Permalink
Changed import path
Browse files Browse the repository at this point in the history
  • Loading branch information
Michael Robinson committed Jan 9, 2017
1 parent 79abe5e commit 6c0c614
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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

Expand All @@ -29,7 +29,7 @@ Search using a tvrage id:
categories := []int{
newznab.CategoryTVHD,
newznab.CategoryTVSD,
}
}
results, _ := client.SearchWithTVRage(categories, 35048, 3, 1)
```

Expand All @@ -38,7 +38,7 @@ Search using an imdb id:
categories := []int{
newznab.CategoryMovieHD,
newznab.CategoryMovieBluRay,
}
}
results, _ := client.SearchWithIMDB(categories, "0364569")
```

Expand Down

0 comments on commit 6c0c614

Please sign in to comment.