Skip to main content

bot_cli/
lib.rs

1//! Bot CLI library exports.
2//!
3//! This crate provides the bot CLI runner and configuration types.
4//! The config module exports types used by both the CLI and schema generation.
5
6pub mod config;
7
8// Re-export commonly used types
9pub use config::BotConfig;