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
import vibe.d;

shared static this()
{
	listenHTTP(new HTTPServerSettings, &handleRequest);
}

void handleRequest(HTTPServerRequest req, HTTPServerResponse res)
{
	res.writeBody("Hello, World!");
}