SetAllowDeleteBody controls whether http delete methods may have a body or fail loading if encountered.
(allow bool)
| 522 | // SetAllowDeleteBody controls whether http delete methods may have a |
| 523 | // body or fail loading if encountered. |
| 524 | func (r *Registry) SetAllowDeleteBody(allow bool) { |
| 525 | r.allowDeleteBody = allow |
| 526 | } |
| 527 | |
| 528 | // SetAllowMerge controls whether generation one OpenAPI file out of multiple protos |
| 529 | func (r *Registry) SetAllowMerge(allow bool) { |
no outgoing calls