mirror of https://github.com/gorilla/websocket.git
7f59b56ea4
Initialize as pointer to struct with zero values as as implied by the doc comment. This initialization matches similar values in the standard library. |
||
---|---|---|
.. | ||
README.md | ||
client.go | ||
server.go |
README.md
Client and server example
This example shows a simple client and server.
The server echoes messages sent to it. The client sends a message every five seconds and prints all messages received.
To run the example, start the server:
$ go run server.go
Next, start the client:
$ go run client.go