4 months after we added the F# Giraffe server stub generator to OpenAPI Generator (https://twitter.com/oas_generator/status/1125309026558926848), we're glad to see another F# server stub generator for Azure Functions by the same author: Nick Fisher (https://twitter.com/NickFisherAU)<p>To generate the F# server stub for Azure Functions given an OpenAPI/Swagger specification file, please follow 3 simple steps below:<p>1. Download the Java JAR (https://oss.sonatype.org/content/repositories/snapshots/org/openapitools/openapi-generator-cli/4.1.3-SNAPSHOT/openapi-generator-cli-4.1.3-20190924.112244-39.jar)<p>2. Rename the JAR as "openapi-generator-cli.jar"<p>3. Run the following command to generate server stub for F#/Azure functions for the Petstore API (https://raw.githubusercontent.com/OpenAPITools/openapi-generator/master/modules/openapi-generator/src/test/resources/2_0/petstore.yaml):<p>Mac/Linux:<p>$ java -jar openapi-generator-cli.jar generate -g fsharp-functions -i https://raw.githubusercontent.com/OpenAPITools/openapi-generator/master/modules/openapi-generator/src/test/resources/2_0/petstore.yaml -o /var/tmp/fsharp-functions/<p>Windows:<p>$ java -jar openapi-generator-cli.jar generate -g fsharp-functions -i https://raw.githubusercontent.com/OpenAPITools/openapi-generator/master/modules/openapi-generator/src/test/resources/2_0/petstore.yaml -o C:\tmp\fsharp-functions<p>If you've any feedback or question, please let us know via https://github.com/OpenAPITools/openapi-generator/issues/new<p>Thanks again for the new generator by Nick Fisher (https://twitter.com/NickFisherAU)<p>Ref: https://github.com/OpenAPITools/openapi-generator/pull/3933