update imports for golang.org/x/

This commit is contained in:
Stephen McQuay 2014-11-25 00:07:16 -08:00
parent 459a69991d
commit 5b6938b927
2 changed files with 18 additions and 16 deletions

View File

@ -1,11 +1,12 @@
package main package main
import ( import (
"code.google.com/p/go.net/websocket"
"flag" "flag"
"fmt" "fmt"
"log" "log"
"net/http" "net/http"
"golang.org/x/net/websocket"
) )
var addr = flag.String("addr", ":8666", "http service address") var addr = flag.String("addr", ":8666", "http service address")

View File

@ -1,11 +1,12 @@
package main package main
import ( import (
"code.google.com/p/go.net/websocket"
"encoding/json" "encoding/json"
"fmt" "fmt"
"log" "log"
"math" "math"
"golang.org/x/net/websocket"
) )
type Position struct { type Position struct {