This commit is contained in:
Adrien Marquès 2019-11-19 19:25:38 +01:00
parent d44df7eee0
commit 5cdcfd21ca
Signed by: xdrm-brackets
GPG Key ID: D75243CA236D825E
1 changed files with 1 additions and 1 deletions

View File

@ -88,7 +88,7 @@ func main() {
})
// 4. launch server
log.Fatal( http.ListenAndServer("localhost:8181", server) )
log.Fatal( http.ListenAndServe("localhost:8181", server) )
}
```