You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

18 lines
349 B

pub mod success;
pub mod external;
pub mod requests;
pub mod responses;
pub mod types;
use requests::Args;
use clap::Parser;
fn main() -> Result<(), Box<dyn std::error::Error>> {
let args = Args::parse();
match args.make_request() {
Ok(info) => println!("{:?}", info),
Err(e) => println!("Error: {:?}", e),
};
Ok(())
}