1 2 3 4 5 6 7 8 9
use anyhow::Result; use compile_typst_site::internals::config::Config; use compile_typst_site::internals::entrypoint; fn main() -> Result<()> { entrypoint::run(&Config::new())?; Ok(()) }