Skip to main content

seekr_code/server/
mod.rs

1//! Server module.
2//!
3//! Provides CLI command implementations, HTTP REST API, MCP Server protocol,
4//! and watch daemon for real-time incremental indexing.
5
6pub mod cli;
7pub mod daemon;
8pub mod http;
9pub mod mcp;