Skip to content

Commit

Permalink
feat: rename go-module
Browse files Browse the repository at this point in the history
  • Loading branch information
ChristophBe committed Dec 29, 2021
1 parent 49b1427 commit 18d5e80
Show file tree
Hide file tree
Showing 13 changed files with 13 additions and 13 deletions.
2 changes: 1 addition & 1 deletion handlers/create.go
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
package handlers

import (
"github.com/ChristophBe/go-crud/types"
"github.com/ChristophBe/grud/types"
"net/http"
)

Expand Down
2 changes: 1 addition & 1 deletion handlers/create_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
2 changes: 1 addition & 1 deletion handlers/crud-handlers.go
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
package handlers

import (
"github.com/ChristophBe/go-crud/types"
"github.com/ChristophBe/grud/types"
"net/http"
)

Expand Down
2 changes: 1 addition & 1 deletion handlers/delete.go
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
package handlers

import (
"github.com/ChristophBe/go-crud/types"
"github.com/ChristophBe/grud/types"
"net/http"
)

Expand Down
2 changes: 1 addition & 1 deletion handlers/function.go
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
package handlers

import (
"github.com/ChristophBe/go-crud/types"
"github.com/ChristophBe/grud/types"
"net/http"
)

Expand Down
2 changes: 1 addition & 1 deletion handlers/get-all.go
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
package handlers

import (
"github.com/ChristophBe/go-crud/types"
"github.com/ChristophBe/grud/types"
"net/http"
)

Expand Down
2 changes: 1 addition & 1 deletion handlers/get-all_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
2 changes: 1 addition & 1 deletion handlers/get-one.go
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
package handlers

import (
"github.com/ChristophBe/go-crud/types"
"github.com/ChristophBe/grud/types"
"net/http"
)

Expand Down
2 changes: 1 addition & 1 deletion handlers/mocks_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ package handlers

import (
"context"
"github.com/ChristophBe/go-crud/types"
"github.com/ChristophBe/grud/types"
"net/http"
)

Expand Down
2 changes: 1 addition & 1 deletion handlers/replace.go
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
package handlers

import (
"github.com/ChristophBe/go-crud/types"
"github.com/ChristophBe/grud/types"
"net/http"
)

Expand Down
2 changes: 1 addition & 1 deletion handlers/replace_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
2 changes: 1 addition & 1 deletion handlers/update.go
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
package handlers

import (
"github.com/ChristophBe/go-crud/types"
"github.com/ChristophBe/grud/types"
"net/http"
)

Expand Down
2 changes: 1 addition & 1 deletion handlers/update_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down

0 comments on commit 18d5e80

Please sign in to comment.