use capability_example::*;
use capability_3p::*;
#[tokio::main]
async fn main() -> Result<(), ManualGrowerFlowError> {
configure_tracing();
trace!("Parsing CLI args via StructOpt");
let strategy = ManualFlowStrategy::from(PathBuf::from("query.txt"));
let cli = ManualGrowerFlowCliArgs::from_args();
cli.run_with_strategy(&strategy).await?;
Ok(())
}