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