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

0 comments on commit 405ff69

Please sign in to comment.