18 lines
359 B
D
18 lines
359 B
D
|
import vibe.vibe;
|
||
|
|
||
|
void main()
|
||
|
{
|
||
|
auto settings = new HTTPServerSettings;
|
||
|
settings.port = 8080;
|
||
|
settings.bindAddresses = ["::1", "127.0.0.1"];
|
||
|
listenHTTP(settings, &hello);
|
||
|
|
||
|
logInfo("Please open http://127.0.0.1:8080/ in your browser.");
|
||
|
runApplication();
|
||
|
}
|
||
|
|
||
|
void hello(HTTPServerRequest req, HTTPServerResponse res)
|
||
|
{
|
||
|
res.writeBody("Hello, World!");
|
||
|
}
|