This repository was archived by the owner on Aug 23, 2022. It is now read-only.

Description
For example, it's not clear how to run app with more than one parameter:
/// App
#[thunderclap]
impl App {
/// run
fn run<'a, 'b>(token: &'a str, listening_address: &'b str) {
println!("Hello {}, my address is {}", token, listening_address);
}
}
error[E0599]: no function or associated item named `run` found for type `clap::App<'_, '_>` in the current scope
--> src\main.rs:28:1
|
28 | #[thunderclap]
| ^^^^^^^^^^^^^^ function or associated item not found in `clap::App<'_, '_>`
error: aborting due to previous error