From 855208b39d551bcb5c13054bd07e3927dbf9b073 Mon Sep 17 00:00:00 2001 From: stephen mcquay Date: Thu, 30 Apr 2015 23:14:17 -0700 Subject: [PATCH] vantiy urls I've moved remote to https://s.mcquay.me/hackerbots/ and stood up routes for go get on the hackerbots repos. I had to update the imports for this to take effect. --- botspectate/main.go | 2 +- client.go | 3 ++- gobot/main.go | 4 ++-- player.go | 4 ++-- spectator.go | 2 +- 5 files changed, 8 insertions(+), 7 deletions(-) diff --git a/botspectate/main.go b/botspectate/main.go index 6ad1212..e202301 100644 --- a/botspectate/main.go +++ b/botspectate/main.go @@ -6,7 +6,7 @@ import ( "math/rand" "time" - "bitbucket.org/hackerbots/client" + "hackerbots.us/client" ) var serverHostname = flag.String("server", "localhost", "server hostname") diff --git a/client.go b/client.go index a9306a4..2d69401 100644 --- a/client.go +++ b/client.go @@ -7,8 +7,9 @@ import ( "fmt" "log" - "bitbucket.org/hackerbots/server" "golang.org/x/net/websocket" + + "hackerbots.us/server" ) func connect(server string, port int) (*websocket.Conn, error) { diff --git a/gobot/main.go b/gobot/main.go index e9edb5b..09e3f05 100644 --- a/gobot/main.go +++ b/gobot/main.go @@ -6,8 +6,8 @@ import ( "math/rand" "time" - "bitbucket.org/hackerbots/client" - "bitbucket.org/hackerbots/server" + "hackerbots.us/client" + "hackerbots.us/server" ) var hp = flag.Int("hp", 50, "") diff --git a/player.go b/player.go index 20667a9..13d9a01 100644 --- a/player.go +++ b/player.go @@ -4,8 +4,8 @@ import ( "math" "math/rand" - "bitbucket.org/hackerbots/server" - "bitbucket.org/hackerbots/vector" + "hackerbots.us/server" + "hackerbots.us/vector" ) // Player is the interface that is implemented when specifying non-default diff --git a/spectator.go b/spectator.go index 5c4d4c8..5d13208 100644 --- a/spectator.go +++ b/spectator.go @@ -6,7 +6,7 @@ import ( "github.com/nsf/termbox-go" - "bitbucket.org/hackerbots/server" + "hackerbots.us/server" ) var botDown rune = 'v'