我在程序里启动了http服务,监听端口8888,用于接收信息,本希望启动http后再执行其他的代码,但是程序执行了ListenAndServe后,后面的代码没有执行,好像都阻塞在ListenAndServe了,请高手帮忙。。。
```go
func main() {
logger.Println("start .....")
http.ListenAndServe(":8888", nil)
fmt.Println("hello")
}
```
有疑问加站长微信联系(非本文作者)