Build builds the application with the prior configuration and returns the Iris Application instance for further customizations. Use "Build" before "Listen" or "Run" to apply further modifications to the framework before starting the server. Calling "Build" is optional.
()
| 298 | // Use "Build" before "Listen" or "Run" to apply further modifications |
| 299 | // to the framework before starting the server. Calling "Build" is optional. |
| 300 | Build() *Application // optional call. |
| 301 | // Listen calls the Application's Listen method which is a shortcut of Run(iris.Addr("hostPort")). |
| 302 | // Use "Run" instead if you need to customize the HTTP/2 server itself. |
| 303 | Listen(hostPort string, configurators ...Configurator) error // Listen OR Run. |
no outgoing calls
no test coverage detected