I'm building a tool to help my dev team to be faster when coding. For that, I thought on creating some kind on command line interface to generate code that's somewhat boilerplate.
I found kotlinpoet, but I'm not sure if it's possible and how to use file templates to generate the code. Since generating a class using code is not that idiomatic, I'd rather take a template and do some changes there and there.
Is this possible? Is there any other template code generation engine such as schematics for Angular?
Thank you,