Skip to content

Commit

Permalink
Switch to go.tomakado.io (#8)
Browse files Browse the repository at this point in the history
* Switch to go.tomakado.io

* Update README
  • Loading branch information
tomakado committed Mar 6, 2024
1 parent 4a5ca7f commit 5f64d4e
Show file tree
Hide file tree
Showing 7 changed files with 13 additions and 7 deletions.
8 changes: 7 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,13 @@
# containers [![Go Reference](https://pkg.go.dev/badge/github.com/tomakado/containers.svg)](https://pkg.go.dev/github.com/tomakado/containers) [![Coverage Status](https://coveralls.io/repos/github/tomakado/containers/badge.svg?branch=master)](https://coveralls.io/github/tomakado/containers?branch=master) [![Go Report Card](https://goreportcard.com/badge/github.com/tomakado/containers)](https://goreportcard.com/report/github.com/tomakado/containers)
# containers [![Go Reference](https://pkg.go.dev/badge/go.tomakado.io/containers.svg)](https://pkg.go.dev/go.tomakado.io/containers) [![Coverage Status](https://coveralls.io/repos/github/tomakado/containers/badge.svg?branch=master)](https://coveralls.io/github/tomakado/containers?branch=master) [![Go Report Card](https://goreportcard.com/badge/go.tomakado.io/containers)](https://goreportcard.com/report/go.tomakado.io/containers)

Collection of simple generic data structures currently missing in Go's standard library.

# Install

```bash
go get -u go.tomakado.io/containers
```

# Data structures

* Set
Expand Down
2 changes: 1 addition & 1 deletion binary/tree_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import (
"testing"

"github.com/stretchr/testify/assert"
"github.com/tomakado/containers/binary"
"go.tomakado.io/containers/binary"
)

func TestAppend(t *testing.T) {
Expand Down
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
module github.com/tomakado/containers
module go.tomakado.io/containers

go 1.19

Expand Down
2 changes: 1 addition & 1 deletion list/list_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import (
"testing"

"github.com/stretchr/testify/assert"
"github.com/tomakado/containers/list"
"go.tomakado.io/containers/list"
)

func TestList(t *testing.T) {
Expand Down
2 changes: 1 addition & 1 deletion stack/stack_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import (
"testing"

"github.com/stretchr/testify/assert"
"github.com/tomakado/containers/stack"
"go.tomakado.io/containers/stack"
)

func TestStack(t *testing.T) {
Expand Down
2 changes: 1 addition & 1 deletion tree/tree.go
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
package tree

import "github.com/tomakado/containers/queue"
import "go.tomakado.io/containers/queue"

// Node is a node of N-ary tree.
// Implementation is based on code by Ilija Eftimov (URL: https://ieftimov.com/posts/golang-datastructures-trees/).
Expand Down
2 changes: 1 addition & 1 deletion tree/tree_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import (
"testing"

"github.com/stretchr/testify/assert"
"github.com/tomakado/containers/tree"
"go.tomakado.io/containers/tree"
)

func TestAppend(t *testing.T) {
Expand Down

0 comments on commit 5f64d4e

Please sign in to comment.