fix typo
continuous-integration/drone/push Build is passing Details

This commit is contained in:
Adrien Marquès 2019-11-19 19:25:38 +01:00
parent fa6ae714b6
commit a173ab6c4c
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) )
}
```