(route: string | RegExp)
| 85 | * @Throws InvalidRouteException |
| 86 | */ |
| 87 | export function HttpGet(route: string | RegExp): (target: any, propertyKey: string) => void { |
| 88 | return AttributeMetadata.httpGet(route); |
| 89 | } |
| 90 | |
| 91 | /** |
| 92 | * Responds to HttpPost |
no outgoing calls
no test coverage detected