I am brand new to D, and am trying out the REST API demo provided at:

https://github.com/rejectedsoftware/vibe.d/blob/master/examples/rest/source/app.d

The application compiles and runs, but when I attempt to execute a query against the API (as follows)

curl -X GET http://localhost:8080/some_info/

I get the following error:

404 - Not Found

Not Found

Internal error information:
vibe.http.common.HTTPStatusException@../../.dub/packages/vibe-d-master/source/vibe/http/server.d(1271): Not Found
----------------
/tmp/dub/346773797/vibe(void vibe.http.server.handleHTTPConnection(vibe.core.net.TCPConnection, vibe.http.server.HTTPServerListener)+0x143) [0x5d4a0b]
/tmp/dub/346773797/vibe(void vibe.http.server.listenHTTPPlain(vibe.http.server.HTTPServerSettings, void delegate(vibe.http.server.HTTPServerRequest, vibe.http.server.HTTPServerResponse)).void doListen(vibe.http.server.HTTPServerSettings, vibe.http.server.HTTPServerListener, immutable(char)[]).void __lambda54(vibe.core.net.TCPConnection)+0x2c) [0x5d10a4]
/tmp/dub/346773797/vibe(extern (C) nothrow void vibe.core.drivers.libevent2_tcp.onConnect(int, short, void*).void ClientTask.execute()+0x2d6) [0x66bc36]
/tmp/dub/346773797/vibe(void vibe.core.core.CoreTask.run()+0xf2) [0x67056a]
/tmp/dub/346773797/vibe(void core.thread.Fiber.run()+0x2a) [0x6e23b2]
/tmp/dub/346773797/vibe(fiber_entryPoint+0x61) [0x6e22bd]

Based on the code Example1API should provide the /some_info/ API.

Any help is appreciated.

Craig