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
|
2026-05-14 18:33:20 +02:00
|
|
|
//! the vault scanner, the in-memory note store, the filesystem watcher, the
|
|
|
|
|
//! supervisor tree, and the HTTP surface. See
|
|
|
|
|
//! [[ADR-009 Reverse ADR-002 In-Memory Evaluation No Tantivy]] for why v1
|
|
|
|
|
//! ships without a search index.
|
2026-05-14 14:39:32 +02:00
|
|
|
|
2026-05-14 14:49:02 +02:00
|
|
|
pub mod app;
|
2026-05-14 18:22:30 +02:00
|
|
|
pub mod doctor;
|
2026-05-14 16:23:08 +02:00
|
|
|
pub mod health;
|
2026-05-14 15:39:00 +02:00
|
|
|
pub mod http;
|
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;
|