neutauri/neutauri_bundler/src/main.rs

11 lines
196 B
Rust
Raw Normal View History

2022-04-04 15:53:17 +00:00
mod bundle;
2022-01-31 09:35:36 +00:00
mod data;
2022-01-27 16:59:12 +00:00
2022-04-04 15:53:17 +00:00
fn main() -> std::io::Result<()> {
2022-02-01 11:48:42 +00:00
let arg = std::env::args()
.nth(1)
2022-02-05 10:05:04 +00:00
.unwrap_or_else(|| "neutauri.toml".into());
2022-04-04 15:53:17 +00:00
bundle::bundle(arg)?;
2022-01-31 09:35:36 +00:00
Ok(())
2022-01-26 17:02:17 +00:00
}