ARTICLE AD BOX
I am developing a backend server using Quarkus, and I want to be able to interact with the app and some of the implemented services via CLI. So for example have the server running on port 8080 serving my users, but as an admin run a command like quarkus cli myCustomCommand arg1 --foo=bar. I know I can have an admin-only rest endpoint and interact with it via curl, but I don't really find that clean. Is there a good solution for this? I tried picocli but I couldn't make it work the way I intended.
