Close immediately stops the server. It internally calls `http.Server#Close()`.
()
| 676 | // Close immediately stops the server. |
| 677 | // It internally calls `http.Server#Close()`. |
| 678 | func (app *DotWeb) Close() error { |
| 679 | return app.HttpServer.stdServer.Close() |
| 680 | } |
| 681 | |
| 682 | // Shutdown stops server gracefully. |
| 683 | // It internally calls `http.Server#Shutdown()`. |
no outgoing calls