1 2 3 4 5 6 7 8 9 10
use std::process::exit; use compile_typst_site::config::Config; fn main() { compile_typst_site::entrypoint::run(&Config::new()).unwrap_or_else(|err| { eprintln!("{:?}", err); exit(1) }); }