1 2 3 4 5 6 7 8 9
use anyhow::Error; use fehler::throws; use trdelnik_client::TestGenerator; #[throws] pub async fn init(skip_fuzzer: bool) { let generator = TestGenerator::new(); generator.generate(skip_fuzzer).await?; }