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.
This commit is contained in:
Stephen McQuay 2015-04-30 23:07:21 -07:00
parent d00e2a8df8
commit 446eba5209
10 changed files with 14 additions and 12 deletions

View File

@ -10,7 +10,7 @@ import (
"runtime/pprof"
"time"
"bitbucket.org/hackerbots/server"
"hackerbots.us/server"
)
var addr = flag.String("addr", ":8666", "http service address")

View File

@ -12,8 +12,9 @@ import (
"strings"
"sync"
"github.com/smcquay/idg"
"golang.org/x/net/websocket"
"mcquay.me/idg"
)
// JsonHandler is a function type that allows setting the Content-Type

View File

@ -8,7 +8,7 @@ import (
"sync"
"time"
"bitbucket.org/smcquay/bandwidth"
"mcquay.me/bandwidth"
)
const maxPlayer = 128

View File

@ -5,7 +5,7 @@ import (
"math"
"math/rand"
v "bitbucket.org/hackerbots/vector"
v "hackerbots.us/vector"
)
// Obstacle is the implementation of the generic building type in the game.

View File

@ -5,8 +5,9 @@ import (
"encoding/json"
"log"
"bitbucket.org/smcquay/bandwidth"
"golang.org/x/net/websocket"
"mcquay.me/bandwidth"
)
const maxMessageSize = 1024

View File

@ -3,7 +3,7 @@ package server
import (
"log"
v "bitbucket.org/hackerbots/vector"
v "hackerbots.us/vector"
)
// Projectile are the things robots can shoot at eachother.

View File

@ -3,8 +3,9 @@ package server
import (
"log"
v "bitbucket.org/hackerbots/vector"
"golang.org/x/net/websocket"
v "hackerbots.us/vector"
)
// GameID is essentially the name of the game we want to join

View File

@ -5,9 +5,8 @@ import (
"math"
"math/rand"
"github.com/smcquay/idg"
v "bitbucket.org/hackerbots/vector"
v "hackerbots.us/vector"
"mcquay.me/idg"
)
// Robot contains everything the game needs to know to simulate robot behavior.

View File

@ -5,7 +5,7 @@ import (
"math"
"testing"
v "bitbucket.org/hackerbots/vector"
v "hackerbots.us/vector"
)
func init() {

View File

@ -1,7 +1,7 @@
package server
import (
v "bitbucket.org/hackerbots/vector"
v "hackerbots.us/vector"
)
// Splosion embodies an explosion.