openapi2cl
openapi2cl copied to clipboard
This is a library for generating common-lisp clients from OpenAPI v2 specifications.
Suggestion: The project (as 90%) of Lisp projects, doesn't require compilation from an external command line using make. The usual way to compile such a project (like openapi2cl) is just...
Instead, set `*package*` prior to printing the generated code out.
I.e. some people prefer to pass in `'foo` instead of `#'foo`. `funcall`, `apply`, etc. already support this.
hi, i'm playing around with this to get it running, calling it against https://codeberg.org/swagger.v1.json. one issue i ran into was form-data parameters for file uploads. `(media-type-form-p consumes-media-type)` always returns nil,...
while trying to get this library running against https://codeberg.org/swagger.v1.json, i found that `generate` mandates `host` `basePath` `consumes` `produces`, `schemes`. the codeberg/forgejo swagger has no host, so `gethash` errors. so this:...