diff --git a/README.mkd b/README.mkd index 2a949ca..3629293 100644 --- a/README.mkd +++ b/README.mkd @@ -1,11 +1,11 @@ # Golang Link Header Parser +Forked from "https://github.com/tomnomnom/linkheader" + Library for parsing HTTP Link headers. Requires Go 1.6 or higher. Docs can be found on [the GoDoc page](https://godoc.org/github.com/tomnomnom/linkheader). -[![Build Status](https://travis-ci.org/tomnomnom/linkheader.svg)](https://travis-ci.org/tomnomnom/linkheader) - ## Basic Example ```go @@ -14,7 +14,7 @@ package main import ( "fmt" - "github.com/tomnomnom/linkheader" + linkheader "git.gutmet.org/linkheader.git" ) func main() { @@ -31,5 +31,3 @@ func main() { // URL: https://api.github.com/user/58276/repos?page=2; Rel: next // URL: https://api.github.com/user/58276/repos?page=2; Rel: last ``` - -