2026-05-14 14:39:32 +02:00
|
|
|
//! Anwesen: read-only HTTP daemon over a markdown vault.
|
|
|
|
|
//!
|
|
|
|
|
//! The binary in `main.rs` wires this library to a CLI; submodules implement
|
|
|
|
|
//! the vault scanner, the Tantivy index, the filesystem watcher, the
|
|
|
|
|
//! supervisor tree, and the HTTP surface as those issues land.
|
|
|
|
|
|
2026-05-14 14:49:02 +02:00
|
|
|
pub mod app;
|
2026-05-14 15:39:00 +02:00
|
|
|
pub mod http;
|
2026-05-14 14:55:34 +02:00
|
|
|
pub mod index;
|
2026-05-14 16:08:13 +02:00
|
|
|
pub mod query;
|
2026-05-14 15:39:00 +02:00
|
|
|
pub mod store;
|
2026-05-14 14:39:32 +02:00
|
|
|
pub mod vault;
|
2026-05-14 15:21:32 +02:00
|
|
|
pub mod watcher;
|