How can I turn things like /foo/{id}
(swagger/openapi path specs) into something that pedestal understand, like /foo/:id
(string/replace "/foo/{bar}/car/{var}"
#"(\{[^\}]+\})"
(fn [[v _]]
(str ":" (subs v 1 (dec (count v))))))
I'm still looking for a "final solution" for this issue