diff --git a/lib/domain/libimagwiki/src/wiki.rs b/lib/domain/libimagwiki/src/wiki.rs index acf4fd08..50ef61cd 100644 --- a/lib/domain/libimagwiki/src/wiki.rs +++ b/lib/domain/libimagwiki/src/wiki.rs @@ -35,6 +35,15 @@ use error::Result; pub struct Wiki<'a, 'b>(&'a Store, &'b str); +/// An interface for accessing, creating and deleting "wiki pages" +/// +/// Wiki pages are normal entries with some details added. +/// +/// +/// # Details +/// +/// Entries are automatically linked to the "index" page when created and retrieved. +/// impl<'a, 'b> Wiki<'a, 'b> { pub(crate) fn new(store: &'a Store, name: &'b str) -> Wiki<'a, 'b> {