Skip to content

Commit c4e50a1

Browse files
committed
go.net: use golang.org/x/... import paths
1 parent 722c4d2 commit c4e50a1

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

de/08.2.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,7 @@ Server code:
107107
package main
108108

109109
import (
110-
"code.google.com/p/go.net/websocket"
110+
"golang.org/x/net/websocket"
111111
"fmt"
112112
"log"
113113
"net/http"

ja/08.2.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@ WebSocketはクライアントとサーバに分けられます。ここでは
9999
package main
100100

101101
import (
102-
"code.google.com/p/go.net/websocket"
102+
"golang.org/x/net/websocket"
103103
"fmt"
104104
"log"
105105
"net/http"

pt-br/08.2.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,7 @@ Server code:
107107
package main
108108

109109
import (
110-
"code.google.com/p/go.net/websocket"
110+
"golang.org/x/net/websocket"
111111
"fmt"
112112
"log"
113113
"net/http"

zh/08.2.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@ WebSocket分为客户端和服务端,接下来我们将实现一个简单的
9999
package main
100100

101101
import (
102-
"code.google.com/p/go.net/websocket"
102+
"golang.org/x/net/websocket"
103103
"fmt"
104104
"log"
105105
"net/http"

0 commit comments

Comments
 (0)