1
0
mirror of https://github.com/chai2010/advanced-go-programming-book.git synced 2025-05-24 04:22:22 +00:00

Remove unreached os.Exit(1)

log.Fatal will auto invoke os.Exit
This commit is contained in:
Lingchao Xin 2018-02-27 19:24:36 +08:00 committed by GitHub
parent 529607a69c
commit 5e439af126
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -45,7 +45,6 @@ func main() {
err := http.ListenAndServe(":8080", nil)
if err != nil {
log.Fatal(err)
os.Exit(1)
}
}