Skip to content

Commit

Permalink
Fix import for test cases #1
Browse files Browse the repository at this point in the history
Replaced from zaebee/govalent to AlchemistsLab/govalent
Update README.md
  • Loading branch information
zaebee committed May 25, 2021
1 parent 2fc9cc8 commit 4c9e2f1
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 2 deletions.
8 changes: 7 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ If you are dealing with one account. There is no need to create a new client. yo

```go
import (
"fmt"
"github.com/AlchemistsLab/govalent"
)

Expand All @@ -33,6 +34,7 @@ If you are dealing with multiple accounts. You can create a new `govalent.Client

```go
import (
"fmt"
"github.com/AlchemistsLab/govalent"
)
covalentClient := govalent.Client{}
Expand All @@ -51,7 +53,8 @@ fmt.Printf("%v", info)

```go
import (
"github.com/AlchemistsLab/govalent"
"fmt"
"github.com/AlchemistsLab/govalent"
"github.com/AlchemistsLab/govalent/class_a"
)

Expand All @@ -71,6 +74,7 @@ fmt.Printf("%v", p)

```go
import (
"fmt"
"github.com/AlchemistsLab/govalent"
)

Expand All @@ -86,6 +90,7 @@ fmt.Printf("%v", p)

```go
import (
"fmt"
"github.com/AlchemistsLab/govalent"
)

Expand All @@ -101,6 +106,7 @@ fmt.Printf("%v", p)

```go
import (
"fmt"
"github.com/AlchemistsLab/govalent"
"github.com/AlchemistsLab/govalent/class_a"
)
Expand Down
2 changes: 1 addition & 1 deletion class_a/client_test.go
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
package class_a

import (
"github.com/AlchemistsLab/govalent/client"
"github.com/google/go-cmp/cmp"
"github.com/zaebee/govalent/client"
"io"
"net/http"
"net/http/httptest"
Expand Down

0 comments on commit 4c9e2f1

Please sign in to comment.