Browse Source

Update README.md

Volodymyr Tkach 2 years ago
parent
commit
addc6aeb2f
1 changed files with 9 additions and 3 deletions
  1. 9 3
      README.md

+ 9 - 3
README.md

@@ -48,8 +48,14 @@ func main() {
 
 			fmt.Printf("After 12 seconds!\n")
 			w.Header().Set("Content-Type", "text/html")
-			w.Write([]byte(`<div>After 12 seconds!</div>`))
-			w.Write([]byte(`<div>` + r.URL.Path + `</div>`))
+			if _, err := w.Write([]byte(`<div>After 12 seconds!</div>`)); err != nil {
+				fmt.Printf("%s\n", err.Error())
+				return
+			}
+			if _, err := w.Write([]byte(`<div>` + r.URL.Path + `</div>`)); err != nil {
+				fmt.Printf("%s\n", err.Error())
+				return
+			}
 		})
 		srv := &http.Server{Addr: "127.0.0.1:8080", Handler: mux}
 		go func() {
@@ -69,7 +75,7 @@ func main() {
 	}
 
 	// Run application
-	ctrlc.App(8*time.Second, MyAppFunc)
+	ctrlc.App(MyAppFunc)
 }
 ```