1
0
Fork 0
forked from wry/wry
wry/crates/xml-to-wire/src/main.rs

15 lines
233 B
Rust

use {
crate::builder::{BuilderError, handle_file},
std::env::args,
};
mod ast;
mod builder;
mod parser;
fn main() -> Result<(), BuilderError> {
for xml in args().skip(1) {
handle_file(&xml)?;
}
Ok(())
}