mmontone / cl-rest-server

Serve REST APIs from Common Lisp
http://mmontone.github.io/cl-rest-server/cl-rest-server/
MIT License
66 stars 9 forks source link

OpenAPI generation needs documentation #8

Open Symbolics opened 4 years ago

Symbolics commented 4 years ago

From the README:

Alpha OpenAPI support Parse Open API v3 apis and generate Lisp API spec from it.

cl-swagger might be a good place to start. The original seems unmaintained, but there are active forks.

mmontone commented 4 years ago
Alpha OpenAPI support
Parse Open API v3 apis and generate Lisp API spec from it.

That refers to rs.openapi:define-api-from-spec that parses an OpenAPI v3 json spec file and generates a Lisp api interface.

I'm using it in one of my projects and works for my purposes.

But it needs to be documented.

Symbolics commented 4 years ago
Symbolics commented 4 years ago

Just to add: it would be great if this were separated from cl-rest-server so that folks just generating REST clients from a spec could use it.

naryl commented 3 years ago

10