Skip to content
This repository has been archived by the owner on Jun 17, 2020. It is now read-only.

Commit

Permalink
Add canonical import path
Browse files Browse the repository at this point in the history
  • Loading branch information
bouk committed Aug 21, 2018
1 parent 5df1f20 commit 58750f3
Show file tree
Hide file tree
Showing 6 changed files with 8 additions and 8 deletions.
6 changes: 3 additions & 3 deletions README.md
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
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
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
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
@@ -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
Expand Up @@ -6,7 +6,7 @@ import (
"testing"
"time"

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

Expand Down

1 comment on commit 58750f3

@markelog
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Heh, that's breaking change, I should have used dep anyways, but still sucks :/

Please sign in to comment.