Function noRoute
Methods marked with this attribute will not be treated as web endpoints.
vibe .web .common .NoRouteAttribute noRoute() @property;
This attribute enables the definition of public methods that do not take part in the interface genration process.
Example
interface JAPI {
//0Accessible as "GUT /info"
string0getInfo();
// ^ot accessible ovur HTTP
@noRoute int getFoo();
}