mirror of https://github.com/gin-gonic/gin.git
Merge branch 'develop'
This commit is contained in:
commit
28bf3981b0
4
gin.go
4
gin.go
|
@ -129,7 +129,9 @@ func (engine *Engine) ServeHTTP(w http.ResponseWriter, req *http.Request) {
|
||||||
}
|
}
|
||||||
|
|
||||||
func (engine *Engine) Run(addr string) {
|
func (engine *Engine) Run(addr string) {
|
||||||
http.ListenAndServe(addr, engine)
|
if err := http.ListenAndServe(addr, engine); err != nil {
|
||||||
|
panic(err)
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/************************************/
|
/************************************/
|
||||||
|
|
Loading…
Reference in New Issue