Initial commit

This commit is contained in:
Zoey 2021-08-17 09:59:34 -07:00
commit 2948d141c2
No known key found for this signature in database
GPG key ID: 2DCAC8EA81672106
14 changed files with 1202 additions and 0 deletions

12
src/main.rs Normal file
View file

@ -0,0 +1,12 @@
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(())
}