font-explorer/src/main.rs
2024-11-17 21:05:13 +01:00

25 lines
413 B
Rust

mod font;
use std::{fs::File, io::Result};
use clap::Parser;
use font::Font;
#[derive(Parser, Debug)]
#[command(version, about, long_about = None)]
struct Args {
file: String
}
fn main() -> Result<()> {
let args = Args::parse();
let font = Font::new(File::open(args.file)?);
let Ok(font) = font else {
panic!("{}", font.unwrap_err().to_string());
};
dbg!(font);
Ok(())
}