Several .unwrap() calls exist in production paths in argus-core and argus-cli.
These should be replaced with proper error handling using ? operator or explicit
match statements to prevent panics under unexpected API responses or network conditions.
Good starting point: crates/argus-core/src/tools.rs and crates/argus-cli/src/main.rs
Several .unwrap() calls exist in production paths in argus-core and argus-cli.
These should be replaced with proper error handling using ? operator or explicit
match statements to prevent panics under unexpected API responses or network conditions.
Good starting point: crates/argus-core/src/tools.rs and crates/argus-cli/src/main.rs