Thanks to visit codestin.com
Credit goes to github.com

Skip to content
This repository was archived by the owner on Jun 17, 2020. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ import (
"os"
"strings"

"github.com/bouk/monkey"
"bou.ke/monkey"
)

func main() {
Expand Down Expand Up @@ -50,7 +50,7 @@ import (
"net/http"
"reflect"

"github.com/bouk/monkey"
"bou.ke/monkey"
)

func main() {
Expand Down Expand Up @@ -79,7 +79,7 @@ import (
"reflect"
"strings"

"github.com/bouk/monkey"
"bou.ke/monkey"
)

func main() {
Expand Down
2 changes: 1 addition & 1 deletion examples/bleep.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import (
"os"
"strings"

"github.com/bouk/monkey"
"bou.ke/monkey"
)

func main() {
Expand Down
2 changes: 1 addition & 1 deletion examples/instance_example.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import (
"net/http"
"reflect"

"github.com/bouk/monkey"
"bou.ke/monkey"
)

func main() {
Expand Down
2 changes: 1 addition & 1 deletion examples/no_http.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import (
"reflect"
"strings"

"github.com/bouk/monkey"
"bou.ke/monkey"
)

func main() {
Expand Down
2 changes: 1 addition & 1 deletion monkey.go
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package monkey
package monkey // import "bou.ke/monkey"

import (
"fmt"
Expand Down
2 changes: 1 addition & 1 deletion monkey_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import (
"testing"
"time"

"github.com/bouk/monkey"
"bou.ke/monkey"
"github.com/stretchr/testify/assert"
)

Expand Down