llm_tool/lib.rs
1#![doc = include_str!("../README.md")]
2
3// Allow `::llm_tool::` paths (generated by the `#[llm_tool]` proc macro) to
4// resolve when compiling tests within this crate.
5extern crate self as llm_tool;
6
7mod registry;
8mod rust_tool;
9mod types;
10
11pub use registry::*;
12pub use rust_tool::*;
13pub use types::*;