mirror of
https://github.com/zyllian/webdog.git
synced 2025-05-10 02:26:42 -07:00
Initial commit
This commit is contained in:
commit
1c706726c1
14 changed files with 1202 additions and 0 deletions
12
src/main.rs
Normal file
12
src/main.rs
Normal 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(())
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue