OpenAPI generator for OCaml with Requests/Eio/Jsont
1(** OCaml OpenAPI - Code generator for OpenAPI specifications.
2
3 This library provides:
4 - {!module:Spec} - OpenAPI 3.x specification types with jsont codecs
5 - {!module:Codegen} - Code generation from spec to OCaml
6 - {!module:Runtime} - Runtime utilities for generated clients
7 - {!module:Nestjs} - NestJS/Express error handling (optional)
8*)
9
10module Spec = Openapi_spec
11module Codegen = Openapi_codegen
12module Runtime = Openapi_runtime
13module Nestjs = Openapi_nestjs