Skip to content

Commit

Permalink
remove refs to github
Browse files Browse the repository at this point in the history
  • Loading branch information
trinitum committed Feb 26, 2019
1 parent 6e94634 commit 0e95943
Show file tree
Hide file tree
Showing 6 changed files with 7 additions and 8 deletions.
3 changes: 1 addition & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,4 @@

library for sorting capable of storing data being sorted to disk

[![TravisCI](https://travis-ci.org/trinitum/go-filesort.svg?branch=master)](https://travis-ci.org/trinitum/go-filesort)
[![GoDoc](https://godoc.org/github.com/trinitum/go-filesort?status.svg)](http://godoc.org/github.com/trinitum/go-filesort)
[![GoDoc](https://godoc.org/gitlab.com/shaydo/go-filesort?status.svg)](http://godoc.org/gitlab.com/shaydo/go-filesort)
4 changes: 2 additions & 2 deletions cmd/sort/sort.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ import (
"fmt"
"os"

filesort "github.com/trinitum/go-filesort"
"github.com/trinitum/go-filesort/text"
filesort "gitlab.com/shaydo/go-filesort"
"gitlab.com/shaydo/go-filesort/text"
)

func main() {
Expand Down
2 changes: 1 addition & 1 deletion csv/csv.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import (
"encoding/csv"
"io"

filesort "github.com/trinitum/go-filesort"
filesort "gitlab.com/shaydo/go-filesort"
)

type csvEncoder struct {
Expand Down
2 changes: 1 addition & 1 deletion csv/csv_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import (
"strings"
"testing"

filesort "github.com/trinitum/go-filesort"
filesort "gitlab.com/shaydo/go-filesort"
)

func Example() {
Expand Down
2 changes: 1 addition & 1 deletion text/text.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import (
"io"
"strings"

filesort "github.com/trinitum/go-filesort"
filesort "gitlab.com/shaydo/go-filesort"
)

// Less compares two strings and returns true if the first one should come
Expand Down
2 changes: 1 addition & 1 deletion text/text_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import (
"fmt"
"testing"

filesort "github.com/trinitum/go-filesort"
filesort "gitlab.com/shaydo/go-filesort"
)

func Example() {
Expand Down

0 comments on commit 0e95943

Please sign in to comment.