//! alimentar CLI entry point
use std::process::ExitCode;
#[cfg(feature = "dhat-heap")]
#[global_allocator]
static ALLOC: dhat::Alloc = dhat::Alloc;
fn main() -> ExitCode {
#[cfg(feature = "dhat-heap")]
let _profiler = dhat::Profiler::new_heap();
alimentar::cli::run()
}