Function rootPathFromName
Convenience alias
Prototype
RootPath rootPathFromName() @property;
Example
@rootPathFromName interface IAPI { int getFoo(); } class API : IAPI { int getFoo() { return 42; } } auto router = new URLRouter(); registerRestInterface(router, new API()); auto routes= router.getAllRoutes(); assert(routes[HTTPMethod.GET][0].pattern == "/iapi/foo");
Authors
Sönke Ludwig, Михаил Страшун
Copyright
© 2012-2013 RejectedSoftware e.K.
License
Subject to the terms of the MIT license, as written in the included LICENSE.txt file.