()
| 52 | } |
| 53 | |
| 54 | func (o *operation) clone() *operation { |
| 55 | return &operation{ |
| 56 | Name: o.Name, |
| 57 | DocumentationURL: o.DocumentationURL, |
| 58 | OpenAPIFiles: append([]string{}, o.OpenAPIFiles...), |
| 59 | } |
| 60 | } |
| 61 | |
| 62 | func operationsEqual(a, b []*operation) bool { |
| 63 | if len(a) != len(b) { |