You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: app-intro.md
+6-5Lines changed: 6 additions & 5 deletions
Original file line number
Diff line number
Diff line change
@@ -8,10 +8,11 @@ Each chapter will iterate on the previous one, expanding the application's funct
8
8
9
9
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.
10
10
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.
12
12
13
13
-[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