# 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). ## Basic Example ```go package main import ( "fmt" linkheader "git.gutmet.org/linkheader.git" ) func main() { header := "; rel=\"next\"," + "; rel=\"last\"" links := linkheader.Parse(header) for _, link := range links { fmt.Printf("URL: %s; Rel: %s\n", link.URL, link.Rel) } } // Output: // URL: https://api.github.com/user/58276/repos?page=2; Rel: next // URL: https://api.github.com/user/58276/repos?page=2; Rel: last ```