Newer
Older
dub_jkp / examples / vibed / source / app.d
@James Clarke James Clarke on 22 May 2014 198 bytes Ensure all files end with a newline
  1. import vibe.d;
  2.  
  3. shared static this()
  4. {
  5. listenHTTP(new HTTPServerSettings, &handleRequest);
  6. }
  7.  
  8. void handleRequest(HTTPServerRequest req, HTTPServerResponse res)
  9. {
  10. res.writeBody("Hello, World!");
  11. }