Skip to content

Commit d9400fb

Browse files
authored
Add websockets section to app-intro.md (quii#557)
* add websockets section to app-intro.md * Change app-intro.md text to match readme.md
1 parent b9d995b commit d9400fb

File tree

1 file changed

+6
-5
lines changed

1 file changed

+6
-5
lines changed

app-intro.md

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -8,10 +8,11 @@ Each chapter will iterate on the previous one, expanding the application's funct
88

99
New concepts will be introduced to help facilitate writing great code but most of the new material will be learning what can be accomplished from Go's standard library.
1010

11-
By the end of this you should have a strong grasp as to how to iteratively write an application in Go, backed by tests.
11+
By the end of this, you should have a strong grasp as to how to iteratively write an application in Go, backed by tests.
1212

1313
- [HTTP server](http-server.md) - We will create an application which listens to HTTP requests and responds to them.
14-
- [JSON, routing and embedding](json.md) - We will make our endpoints return JSON, explore how to do routing and learn about type embedding.
15-
- [IO ](io.md) - We will persist and read our data from disk and we'll cover sorting data.
16-
- [Command line](command-line.md) - We will create a new program leveraging the code we've made so far to make a command line interface. This will involve us restructuring our project to support multiple binaries
17-
- [Time](time.md) - We will schedule some activities that happen at different times depending on user input.
14+
- [JSON, routing and embedding](json.md) - We will make our endpoints return JSON and explore how to do routing.
15+
- [IO and sorting](io.md) - We will persist and read our data from disk and we'll cover sorting data.
16+
- [Command line & project structure](command-line.md) - Support multiple applications from one code base and read input from command line.
17+
- [Time](time.md) - using the `time` package to schedule activities.
18+
- [WebSockets](websockets.md) - learn how to write and test a server that uses WebSockets.

0 commit comments

Comments
 (0)