From 3c23d869e4532ac33d8a3fdaa0f3881e2db7b840 Mon Sep 17 00:00:00 2001 From: gutmet Date: Sun, 20 Nov 2022 21:48:11 +0100 Subject: [PATCH] fork --- README.mkd | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) 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 ``` - -