hallouminate 0.2.1

A markdown corpus indexer for LLMs to build and query their own per-repo wikis.
Documentation
//! Application entry layer: CLI parsing, configuration loading, the daemon,
//! and logging.

pub mod cli;
pub mod config;
pub mod daemon;
pub mod input_error;
pub mod logging;
pub mod xdg;

use clap::Parser;

/// Parse CLI arguments, initialize logging, and dispatch to the selected
/// command.
pub async fn run() -> anyhow::Result<()> {
    let cli = cli::Cli::parse();
    let _log_guard = logging::init()?;
    cli::dispatch(cli).await
}