From 76744c00d4bbbc8c215a911cf9520511cbc7014f Mon Sep 17 00:00:00 2001 From: Nathan McCarty Date: Wed, 15 Mar 2023 20:08:07 -0400 Subject: [PATCH] feat: Create site module --- src/lib.rs | 2 ++ src/site.rs | 4 ++++ 2 files changed, 6 insertions(+) create mode 100644 src/site.rs 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 {}