aboutsummaryrefslogtreecommitdiff
path: root/src/pages/mod.rs
diff options
context:
space:
mode:
authorKatharina Fey <kookie@spacekookie.de>2019-12-28 23:58:14 +0100
committerKatharina Fey <kookie@spacekookie.de>2019-12-28 23:58:14 +0100
commit81ae20b5a0bca84166076d91b8b32a19d2d451ae (patch)
tree54de2fed2f08ff7f65eb709686f72d76bd34ad66 /src/pages/mod.rs
parentbaf496acf0640fecdc01864989f2142a9757ba14 (diff)
Refactoring basic project structure
Diffstat (limited to 'src/pages/mod.rs')
-rw-r--r--src/pages/mod.rs6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/pages/mod.rs b/src/pages/mod.rs
new file mode 100644
index 0000000..9de9d47
--- /dev/null
+++ b/src/pages/mod.rs
@@ -0,0 +1,6 @@
+//! All the pages in webgit
+//!
+//! A page is defined by it's template type as well as it's route,
+//! which is exported from the module and then called by the router
+
+pub mod repo;