I have an OpenAPI 3.0 schema YAML document that defines some API endpoints with all the required parameters and responses.
Now, I'd like to generate some boilerplate server-side code: the controllers and their methods. My API will be written using ASP.NET Core 2. So, is it possible to use some kind of generators or should I do it manually?
P.S. I know that I can generate the client-side code, but I don't need it right now...