rust_fs_mcp/lib.rs
1//! lib.rs
2//!
3//! Public facade that exposes core, protocol, and tools under stable paths.
4//! Lets the binary, integration tests, and external callers share the same use paths.
5//!
6
7/// 1. mod ----------------------------------------------------------------------
8pub mod core;
9pub mod protocol;
10pub mod tools;
11
12/// 2. use ----------------------------------------------------------------------
13pub use core::{args_ref, batch, config, external, response, web};
14pub use protocol::{catalog, server};
15pub use tools::{fs_tools, git_tools, inspect_tools, search_tools};