This repository contains templates to generate Fenrir Cloud SDK from the OpenAPI 3.0 Specification
To generate csharp SDKs:
export SDK=csharp # csharp, python
docker run -v ${PWD}:/local openapitools/openapi-generator-cli generate \
-g ${SDK} \
-c /local/configs/${SDK}.yaml \
-t /local/templates/${SDK} \
--openapi-normalizer SET_TAGS_FOR_ALL_OPERATIONS=fenrir \
--ignore-file-override=/local/${SDK}.openapi-generator-ignore
Please inspect the respective README files for each respective SDK template.