From 18d5e80eb59a557c3203d10ea4539bff65223667 Mon Sep 17 00:00:00 2001 From: Christoph Becker Date: Wed, 29 Dec 2021 17:14:40 +0100 Subject: [PATCH] feat: rename go-module --- handlers/create.go | 2 +- handlers/create_test.go | 2 +- handlers/crud-handlers.go | 2 +- handlers/delete.go | 2 +- handlers/function.go | 2 +- handlers/get-all.go | 2 +- handlers/get-all_test.go | 2 +- handlers/get-one.go | 2 +- handlers/mocks_test.go | 2 +- handlers/replace.go | 2 +- handlers/replace_test.go | 2 +- handlers/update.go | 2 +- handlers/update_test.go | 2 +- 13 files changed, 13 insertions(+), 13 deletions(-) diff --git a/handlers/create.go b/handlers/create.go index 40f7d15..b1f1da0 100644 --- a/handlers/create.go +++ b/handlers/create.go @@ -1,7 +1,7 @@ package handlers import ( - "github.com/ChristophBe/go-crud/types" + "github.com/ChristophBe/grud/types" "net/http" ) diff --git a/handlers/create_test.go b/handlers/create_test.go index 4874d40..c6d1516 100644 --- a/handlers/create_test.go +++ b/handlers/create_test.go @@ -3,7 +3,7 @@ package handlers import ( "context" "errors" - "github.com/ChristophBe/go-crud/types" + "github.com/ChristophBe/grud/types" "net/http" "net/http/httptest" "testing" diff --git a/handlers/crud-handlers.go b/handlers/crud-handlers.go index 4f7d6b5..f36f285 100644 --- a/handlers/crud-handlers.go +++ b/handlers/crud-handlers.go @@ -1,7 +1,7 @@ package handlers import ( - "github.com/ChristophBe/go-crud/types" + "github.com/ChristophBe/grud/types" "net/http" ) diff --git a/handlers/delete.go b/handlers/delete.go index 1869898..39ad335 100644 --- a/handlers/delete.go +++ b/handlers/delete.go @@ -1,7 +1,7 @@ package handlers import ( - "github.com/ChristophBe/go-crud/types" + "github.com/ChristophBe/grud/types" "net/http" ) diff --git a/handlers/function.go b/handlers/function.go index 589a617..140d500 100644 --- a/handlers/function.go +++ b/handlers/function.go @@ -1,7 +1,7 @@ package handlers import ( - "github.com/ChristophBe/go-crud/types" + "github.com/ChristophBe/grud/types" "net/http" ) diff --git a/handlers/get-all.go b/handlers/get-all.go index de8701c..4a16e05 100644 --- a/handlers/get-all.go +++ b/handlers/get-all.go @@ -1,7 +1,7 @@ package handlers import ( - "github.com/ChristophBe/go-crud/types" + "github.com/ChristophBe/grud/types" "net/http" ) diff --git a/handlers/get-all_test.go b/handlers/get-all_test.go index a445f90..da93f33 100644 --- a/handlers/get-all_test.go +++ b/handlers/get-all_test.go @@ -2,7 +2,7 @@ package handlers import ( "errors" - "github.com/ChristophBe/go-crud/types" + "github.com/ChristophBe/grud/types" "net/http" "net/http/httptest" "testing" diff --git a/handlers/get-one.go b/handlers/get-one.go index 52b0aee..15694be 100644 --- a/handlers/get-one.go +++ b/handlers/get-one.go @@ -1,7 +1,7 @@ package handlers import ( - "github.com/ChristophBe/go-crud/types" + "github.com/ChristophBe/grud/types" "net/http" ) diff --git a/handlers/mocks_test.go b/handlers/mocks_test.go index 8aa7037..ecf3f34 100644 --- a/handlers/mocks_test.go +++ b/handlers/mocks_test.go @@ -2,7 +2,7 @@ package handlers import ( "context" - "github.com/ChristophBe/go-crud/types" + "github.com/ChristophBe/grud/types" "net/http" ) diff --git a/handlers/replace.go b/handlers/replace.go index 6748cab..355e75d 100644 --- a/handlers/replace.go +++ b/handlers/replace.go @@ -1,7 +1,7 @@ package handlers import ( - "github.com/ChristophBe/go-crud/types" + "github.com/ChristophBe/grud/types" "net/http" ) diff --git a/handlers/replace_test.go b/handlers/replace_test.go index 2806d19..42bb01a 100644 --- a/handlers/replace_test.go +++ b/handlers/replace_test.go @@ -2,7 +2,7 @@ package handlers import ( "errors" - "github.com/ChristophBe/go-crud/types" + "github.com/ChristophBe/grud/types" "net/http" "net/http/httptest" "testing" diff --git a/handlers/update.go b/handlers/update.go index 3e5b295..39c1049 100644 --- a/handlers/update.go +++ b/handlers/update.go @@ -1,7 +1,7 @@ package handlers import ( - "github.com/ChristophBe/go-crud/types" + "github.com/ChristophBe/grud/types" "net/http" ) diff --git a/handlers/update_test.go b/handlers/update_test.go index 8042d53..0913ce3 100644 --- a/handlers/update_test.go +++ b/handlers/update_test.go @@ -2,7 +2,7 @@ package handlers import ( "errors" - "github.com/ChristophBe/go-crud/types" + "github.com/ChristophBe/grud/types" "net/http" "net/http/httptest" "testing"