#[cfg(test)]
use crate::connection::{ConnectionEntry, ConnectionRegistry};
mod contract_tools;
mod database_tools;
mod executor;
mod sql_format;
mod tool_calls;
pub(crate) use database_tools::DatabaseTools;
#[allow(unused_imports)]
pub(crate) use database_tools::{
DrainedObservations, ObservationLog, ObservationOutcome, OverrideLog, ToolObservation,
};
#[allow(unused_imports)]
pub(crate) use sql_format::format_sql;
#[allow(unused_imports)]
pub(crate) use tool_calls::{SqlCall, sql_tool_call, tool_call_detail};
#[cfg(test)]
#[path = "tools_tests.rs"]
mod tests;
#[cfg(test)]
#[path = "tools/contract_tools_tests.rs"]
mod contract_tools_tests;
#[cfg(test)]
#[path = "tools/format_tests.rs"]
mod format_tests;
#[cfg(test)]
#[path = "tools/observations_tests.rs"]
mod observations_tests;