turbomcp_server/handlers/implementations/mod.rs
1//! Concrete handler implementations
2//!
3//! This module contains concrete implementations of the handler traits,
4//! including function-based handlers and other implementations.
5
6pub mod function_tool;
7
8// Re-export implementations for backwards compatibility
9pub use function_tool::FunctionToolHandler;