Skip to content

Commit

Permalink
Merge pull request #1182 from kristof-mattei/cleanup
Browse files Browse the repository at this point in the history
fix: cleanup
  • Loading branch information
kristof-mattei authored Jan 13, 2024
2 parents 9236a58 + 80a9dda commit 75a3ce5
Showing 1 changed file with 0 additions and 33 deletions.
33 changes: 0 additions & 33 deletions src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -33,39 +33,6 @@ fn quz() -> &'static str {
"Quz"
}

// async fn something_to_await(_: PathBuf) {
// println!("{}", foo());
// println!("{}", bar());
// todo!("TODO");
// }

// async fn run_app() {
// env_logger::Builder::from_env(Env::default().default_filter_or("INFO")).init();

// let Opt { some_value } = Opt::from_args();

// let mut tasks = FuturesUnordered::new();

// tasks.push(Box::pin(something_to_await(some_value)));

// loop {
// match tasks.next().await {
// None => {
// info!("Done!");
// return;
// }
// _ => {
// info!("Waiting...")
// }
// }
// }
// }

// #[tokio::main]
// async fn main() {
// run_app().await;
// }

fn main() -> Result<(), color_eyre::Report> {
color_eyre::install()?;

Expand Down

0 comments on commit 75a3ce5

Please sign in to comment.