blob: 06346a27f0f2683f06c45520eb2e464e27f6522e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
mod context;
use context::Context;
fn main() {
println!("Hello, world!");
let ctx = Context::new_with_args().unwrap();
println!("{:?}", ctx);
for file in ctx.get_image_files().unwrap() {
println!("{}", file.display());
}
}
|