extern crate jd_decrypter; use std::env; use jd_decrypter::JdAccountList; fn main() { // loop over all arguments for the programm // skip the first one because it's the programm // own name for arg in env::args().skip(1) { // hand over the file path let dlc = JdAccountList::from_file(arg); // print the result println!("Accounts: {:?}", dlc); } }