From 2c768e3c5489976167bfc42b5c7c92ca783f4389 Mon Sep 17 00:00:00 2001 From: Fatih Arslan Date: Fri, 3 Aug 2018 09:55:37 +0300 Subject: [PATCH] Update import paths --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 1f26098..b067d3a 100644 --- a/README.md +++ b/README.md @@ -5,7 +5,7 @@ This project is not maintained anymore and is archived.. Please create your own Thanks all for their work on this project. -# Set [![GoDoc](http://img.shields.io/badge/go-documentation-blue.svg?style=flat-square)](https://godoc.org/gopkg.in/fatih/set.v0) [![Build Status](http://img.shields.io/travis/fatih/set.svg?style=flat-square)](https://travis-ci.org/fatih/set) +# Set [![GoDoc](http://img.shields.io/badge/go-documentation-blue.svg?style=flat-square)](https://godoc.org/github.com/fatih/set) [![Build Status](http://img.shields.io/travis/fatih/set.svg?style=flat-square)](https://travis-ci.org/fatih/set) Set is a basic and simple, hash-based, **Set** data structure implementation in Go (Golang). @@ -24,13 +24,13 @@ For usage see examples below or click on the godoc badge. Install the package with: ```bash -go get gopkg.in/fatih/set.v0 +go get github.com/fatih/set ``` Import it with: ```go -import "gopkg.in/fatih/set.v0" +import "githug.com/fatih/set" ``` and use `set` as the package name inside the code.