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

Merge pull request #61 from gorocks/master

Remove unreached os.Exit(1)
This commit is contained in:
chai2010 2018-02-27 20:57:10 +08:00 committed by GitHub
commit afea2cba2d
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)
}
}