Skip to content

Commit

Permalink
Remove anyhow from foca_insecure_udp_agent
Browse files Browse the repository at this point in the history
I keep forgetting that plain `cargo build` ignores examples...
  • Loading branch information
caio committed Sep 6, 2024
1 parent f93b202 commit 684c94c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion examples/foca_insecure_udp_agent.rs
Original file line number Diff line number Diff line change
Expand Up @@ -189,7 +189,7 @@ fn do_the_file_replace_dance<'a>(
}

#[tokio::main(flavor = "current_thread")]
async fn main() -> Result<(), anyhow::Error> {
async fn main() -> Result<(), Box<dyn core::error::Error>> {
let params = CliParams::new();

// Configured via RUST_LOG environment variable
Expand Down

0 comments on commit 684c94c

Please sign in to comment.