Add readme section about generating

This commit is contained in:
Johan Maasing 2025-04-13 08:56:47 +02:00
parent 2006df75d0
commit b86568a6d0
2 changed files with 109 additions and 1 deletions

View file

@ -0,0 +1,14 @@
<#list endpoints as endpoint>
<#list endpoint.paths.paths>
<#items as segment>/${segment}</#items>
Input:
${endpoint.inputType?cap_first}
Output:
<#if endpoint.outputType.isPresent()>
${endpoint.outputType.get()?cap_first}
<#else>
Not specified
</#if>
</#list>
</#list>