Skip to content

Commit

Permalink
Change all imports to my repo
Browse files Browse the repository at this point in the history
  • Loading branch information
beatgammit committed Aug 4, 2016
1 parent 7e3d305 commit 405ff69
Show file tree
Hide file tree
Showing 10 changed files with 10 additions and 10 deletions.
2 changes: 1 addition & 1 deletion examples/auth/client/client.go
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ import (
"time"

"github.com/howeyc/gopass"
"gopkg.in/jcelliott/turnpike.v2"
"gopkg.in/beatgammit/turnpike.v2"
)

var password []byte
Expand Down
2 changes: 1 addition & 1 deletion examples/auth/server/server.go
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ import (
"net/http"

"github.com/satori/go.uuid"
"gopkg.in/jcelliott/turnpike.v2"
"gopkg.in/beatgammit/turnpike.v2"
)

// this is just an example, please don't actually use it
Expand Down
2 changes: 1 addition & 1 deletion examples/autobahn/server/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import (
"log"
"net/http"

"gopkg.in/jcelliott/turnpike.v2"
"gopkg.in/beatgammit/turnpike.v2"
)

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

"gopkg.in/jcelliott/turnpike.v2"
"gopkg.in/beatgammit/turnpike.v2"
)

const (
Expand Down
2 changes: 1 addition & 1 deletion examples/chat/chatserver/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import (
"log"
"net/http"

"gopkg.in/jcelliott/turnpike.v2"
"gopkg.in/beatgammit/turnpike.v2"
)

func main() {
Expand Down
2 changes: 1 addition & 1 deletion examples/meta-api/meta-client.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package main
import (
"log"

"gopkg.in/jcelliott/turnpike.v2"
"gopkg.in/beatgammit/turnpike.v2"
)

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

"gopkg.in/jcelliott/turnpike.v2"
"gopkg.in/beatgammit/turnpike.v2"
)

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

"gopkg.in/jcelliott/turnpike.v2"
"gopkg.in/beatgammit/turnpike.v2"
)

var client *turnpike.Client
Expand Down
2 changes: 1 addition & 1 deletion examples/web/server.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import (
"log"
"net/http"

"gopkg.in/jcelliott/turnpike.v2"
"gopkg.in/beatgammit/turnpike.v2"
)

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

"gopkg.in/jcelliott/turnpike.v2"
"gopkg.in/beatgammit/turnpike.v2"
)

var (
Expand Down

3 comments on commit 405ff69

@mourad
Copy link
Collaborator

@mourad mourad commented on 405ff69 Aug 4, 2016

Choose a reason for hiding this comment

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

Did you mean to make this change to this repo?

@mourad
Copy link
Collaborator

@mourad mourad commented on 405ff69 Aug 4, 2016

Choose a reason for hiding this comment

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

nevermind ... it didn't appear at first that the change was made to your repo because of the notification that was sent out because a PR is still open against this branch.

@beatgammit
Copy link
Collaborator Author

Choose a reason for hiding this comment

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

I'm unofficially taking over maintaining this repo, and unless I find a better fork, I'll mark the README as pointing to my repo instead and urging everyone to use my fork. My fork isn't ready for prime time yet either though...

Please sign in to comment.