We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b347d9c commit ec29a8dCopy full SHA for ec29a8d
.gitignore
@@ -26,3 +26,5 @@ _testmain.go
26
# OSX
27
*.DS_Store
28
*.db
29
+/example/client/client
30
+/example/server/server
example/README.md
@@ -6,15 +6,17 @@ Run Server
6
7
``` bash
8
$ cd example/server
9
-$ go run main.go
+$ go build server.go
10
+$ ./server
11
```
12
13
Run Client
14
----------
15
16
17
$ cd example/client
18
+$ go build client.go
19
+$ ./client
20
21
22
Open the browser
example/client/main.go renamed to example/client/client.go
example/server/main.go renamed to example/server/server.go
0 commit comments