(path: string, spec?: OperationObject)
| 29 | * of this operation. |
| 30 | */ |
| 31 | export function post(path: string, spec?: OperationObject) { |
| 32 | return operation('post', path, spec); |
| 33 | } |
| 34 | |
| 35 | /** |
| 36 | * Expose a Controller method as a REST API operation |
no test coverage detected