#[cfg(feature = "std")]
fn main() -> Result<asimov_module::SysexitsError, Box<dyn std::error::Error>> {
use asimov_module::SysexitsError::*;
asimov_module::dotenv().ok();
let _args = asimov_module::args_os()?;
#[cfg(feature = "tracing")]
asimov_module::tracing_subscriber::fmt()
.with_writer(std::io::stderr)
.with_max_level(asimov_module::tracing_subscriber::filter::LevelFilter::WARN)
.init();
println!("asimov-nexus-importer");
Ok(EX_UNAVAILABLE)
}
#[cfg(not(feature = "std"))]
fn main() {
unimplemented!("asimov-nexus-importer requires the 'std' feature")
}