Convert OpenAPI `{param}` segments to Fastify `:param` segments.
(openApiPath: string)
| 49 | |
| 50 | /** Convert OpenAPI `{param}` segments to Fastify `:param` segments. */ |
| 51 | function toFastifyPath(openApiPath: string): string { |
| 52 | return openApiPath.replace(/\{([^}]+)\}/g, ':$1'); |
| 53 | } |
| 54 | |
| 55 | // --------------------------------------------------------------------------- |
| 56 | // Schema builders |