-
If I'm using macros to handle my clap commands, I don't have an App object to use. Is there a way to use clap_generate when I'm using clap macros? |
Beta Was this translation helpful? Give feedback.
Answered by
pksunkara
Nov 11, 2020
Replies: 1 comment
-
You will always have an app. |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
pksunkara
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
You will always have an app.
clap_app!
returns it. If you are talking derive macro,Opts::into_app()
returns it.