diff --git a/src/lib.rs b/src/lib.rs index b299f59..97a7a28 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -15,3 +15,5 @@ clippy::shadow_unrelated, clippy::must_use_candidate )] + +pub mod site; diff --git a/src/site.rs b/src/site.rs new file mode 100644 index 0000000..30eab94 --- /dev/null +++ b/src/site.rs @@ -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 {}