Browse Source

Update README.md

Volodymyr Tkach 2 years ago
parent
commit
8cc8191a44
1 changed files with 13 additions and 5 deletions
  1. 13 5
      README.md

+ 13 - 5
README.md

@@ -42,19 +42,27 @@ func main() {
 
 			w.Header().Set("Cache-Control", "no-cache, no-store, must-revalidate")
 			w.Header().Set("Content-Type", "text/html")
-			w.Write([]byte(`
+			if _, err := w.Write([]byte(`
 				<div>Hello World!</div>
 				<div>Counter: ` + fmt.Sprintf("%d", counter) + `</div>
-			`))
+			`)); err != nil {
+				fmt.Printf("%s\n", err.Error())
+			}
 		} else {
 			w.WriteHeader(http.StatusNotFound)
-			w.Write([]byte(`<div>Error 404!</div>`))
+			if _, err := w.Write([]byte(`<div>Error 404!</div>`)); err != nil {
+				fmt.Printf("%s\n", err.Error())
+			}
 		}
 	})
 
 	// Delete expired session files
-	session.Clean("./tmp")
+	if err := session.Clean("./tmp"); err != nil {
+		fmt.Printf("%s\n", err.Error())
+	}
 
-	http.ListenAndServe(":8080", nil)
+	if err := http.ListenAndServe(":8080", nil); err != nil {
+		fmt.Printf("%s\n", err.Error())
+	}
 }
 ```