Skip to content

Commit

Permalink
Switch to go.tomakado.io
Browse files Browse the repository at this point in the history
  • Loading branch information
tomakado committed Mar 6, 2024
1 parent 4a5ca7f commit ff327fe
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
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 ff327fe

Please sign in to comment.