From ff327fe76a8b8c061ba634cfeae640d4d084b467 Mon Sep 17 00:00:00 2001 From: Ildar Karymov Date: Wed, 6 Mar 2024 16:23:34 +0400 Subject: [PATCH] Switch to go.tomakado.io --- binary/tree_test.go | 2 +- go.mod | 2 +- list/list_test.go | 2 +- stack/stack_test.go | 2 +- tree/tree.go | 2 +- tree/tree_test.go | 2 +- 6 files changed, 6 insertions(+), 6 deletions(-) diff --git a/binary/tree_test.go b/binary/tree_test.go index 9549e93..adcf6d1 100644 --- a/binary/tree_test.go +++ b/binary/tree_test.go @@ -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) { diff --git a/go.mod b/go.mod index 2671374..9775faf 100644 --- a/go.mod +++ b/go.mod @@ -1,4 +1,4 @@ -module github.com/tomakado/containers +module go.tomakado.io/containers go 1.19 diff --git a/list/list_test.go b/list/list_test.go index a6c9bf6..9381669 100644 --- a/list/list_test.go +++ b/list/list_test.go @@ -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) { diff --git a/stack/stack_test.go b/stack/stack_test.go index 4eda58a..2f8a4ea 100644 --- a/stack/stack_test.go +++ b/stack/stack_test.go @@ -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) { diff --git a/tree/tree.go b/tree/tree.go index 3fdaa18..cf76475 100644 --- a/tree/tree.go +++ b/tree/tree.go @@ -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/). diff --git a/tree/tree_test.go b/tree/tree_test.go index 70081b3..8e2b9da 100644 --- a/tree/tree_test.go +++ b/tree/tree_test.go @@ -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) {