mirror of
https://github.com/zyllian/zyllian.github.io.git
synced 2025-05-10 02:26:45 -07:00
12 lines
185 B
Rust
12 lines
185 B
Rust
use std::path::Path;
|
|
|
|
use zoey::Site;
|
|
|
|
fn main() -> anyhow::Result<()> {
|
|
let builder = Site::new(Path::new("site"))?;
|
|
builder.build_once()?;
|
|
|
|
println!("Build complete!");
|
|
|
|
Ok(())
|
|
}
|