aboutsummaryrefslogtreecommitdiff
path: root/src/pages/mod.rs
//! 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;

mod overview;
pub use overview::render as overview;

mod p404;
pub use p404::render as p404;

mod files;
pub use files::render as files;