From a7a1f319b315b7b9655d183fbe99775c19ce3969 Mon Sep 17 00:00:00 2001 From: Prad Nukala Date: Thu, 8 Jan 2026 15:46:14 -0500 Subject: [PATCH] docs(readme): update readme to reflect new package path --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 70c3e5c..4e72d30 100644 --- a/README.md +++ b/README.md @@ -5,7 +5,7 @@ go-cid [![](https://img.shields.io/badge/project-IPFS-blue.svg?style=flat-square)](http://ipfs.io/) [![](https://img.shields.io/badge/freenode-%23ipfs-blue.svg?style=flat-square)](http://webchat.freenode.net/?channels=%23ipfs) [![](https://img.shields.io/badge/readme%20style-standard-brightgreen.svg?style=flat-square)](https://github.com/RichardLitt/standard-readme) -[![GoDoc](https://godoc.org/github.com/ipfs/go-cid?status.svg)](https://godoc.org/github.com/ipfs/go-cid) +[![GoDoc](https://godoc.org/code.sonr.org/go/cid?status.svg)](https://godoc.org/code.sonr.org/go/cid) [![Coverage Status](https://coveralls.io/repos/github/ipfs/go-cid/badge.svg?branch=master)](https://coveralls.io/github/ipfs/go-cid?branch=master) [![Travis CI](https://travis-ci.org/ipfs/go-cid.svg?branch=master)](https://travis-ci.org/ipfs/go-cid) @@ -31,7 +31,7 @@ It is used in `go-ipfs` and related packages to refer to a typed hunk of data. `go-cid` is a standard Go module which can be installed with: ```sh -go get github.com/ipfs/go-cid +go get code.sonr.org/go/cid ``` ## Usage @@ -61,7 +61,7 @@ fmt.Println("Got CID: ", c) ```go import ( - cid "github.com/ipfs/go-cid" + cid "code.sonr.org/go/cid" mc "github.com/multiformats/go-multicodec" mh "github.com/multiformats/go-multihash" )