use grimoire_css_lib::start_as_cli;
use std::env;
#[cfg(feature = "heap-profile")]
use dhat::Alloc;
#[cfg(feature = "heap-profile")]
#[global_allocator]
static ALLOC: Alloc = Alloc;
fn main() {
#[cfg(feature = "heap-profile")]
let _profiler = dhat::Profiler::new_heap();
let args: Vec<String> = env::args().collect();
if start_as_cli(args).is_err() {
std::process::exit(1);
}
}