Browse Source

Listen now returns the server object

master
Gisle Aune 7 years ago
parent
commit
fd8a1d786b
  1. 4
      router.go

4
router.go

@ -81,7 +81,7 @@ func (router *Router) Static(mount string, filePath string) {
router.Route(mount, NewStatic(filePath))
}
func (router *Router) Listen(host string, port int) error {
func (router *Router) Listen(host string, port int) (*http.Server, error) {
srv := &http.Server{
Addr: fmt.Sprintf("%s:%d", host, port),
ReadTimeout: 5 * time.Second,
@ -90,5 +90,5 @@ func (router *Router) Listen(host string, port int) error {
Handler: router,
}
return srv.ListenAndServe()
return srv, srv.ListenAndServe()
}
Loading…
Cancel
Save