feat: Create site module

This commit is contained in:
Nathan McCarty 2023-03-15 20:08:07 -04:00
parent 5dd97ee1f7
commit 76744c00d4
No known key found for this signature in database
2 changed files with 6 additions and 0 deletions

View File

@ -15,3 +15,5 @@
clippy::shadow_unrelated,
clippy::must_use_candidate
)]
pub mod site;

4
src/site.rs Normal file
View File

@ -0,0 +1,4 @@
//! Management of on-disk layout of the source of a site
/// Representation of the on-disk structure of a site
pub struct Site {}