Skip to content
Snippets Groups Projects
Commit 6103dd04 authored by y.zobus's avatar y.zobus
Browse files

nothing

parent dde68043
No related branches found
No related tags found
1 merge request!12Resolve "Create command line tool for analysis"
Pipeline #7539 failed
use opossum::{console::{Args, PartialArgs}, error::OpossumError};
use clap::Parser;
type Result<T> = std::result::Result<T, OpossumError>;
fn main() -> Result<()>{
let test = Args::try_from(PartialArgs::parse())?;
println!("file path: {}", test.file_path);
println!("analyzer: {}", test.analyzer);
Ok(())
use opossum::{console::{Args, PartialArgs}, error::OpossumError};
use clap::Parser;
type Result<T> = std::result::Result<T, OpossumError>;
fn main() -> Result<()>{
let test = Args::try_from(PartialArgs::parse())?;
println!("file path: {}", test.file_path);
println!("analyzer: {}", test.analyzer);
Ok(())
}
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment