Function rootPathFromName
Convenience alias
Prototype
vibe.web.common.RootPathAttribute rootPathFromName() @property;
Example
import vibe.http.router; import vibe.web.rest; @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[0].pattern == "/iapi/foo" && routes[0].method == HTTPMethod.GET);
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.