Server

Default HTTP server.

alias Server = ServerImpl!(DefaultConnection, 80)

Examples

auto server = new Server();
server.host("0.0.0.0");
server.loop();

Meta