vkteams-bot-cli 0.7.6

High-performance VK Teams Bot API toolkit with CLI and MCP server support
Documentation
//! VK Teams Bot CLI Library
//!
//! This library provides the core functionality for the VK Teams Bot CLI application.
//! It is organized into modular components for better maintainability and testing.

pub mod cli;
pub mod commands;
pub mod completion;
pub mod config;
pub mod constants;
pub mod errors;
pub mod file_utils;
pub mod output;
pub mod progress;
pub mod scheduler;
// Storage functionality is provided by vkteams-bot crate
// #[cfg(feature = "storage")]
// pub mod storage;
pub mod utils;

// Re-export commonly used types for convenience
pub use cli::Cli;
pub use commands::Command;
pub use config::CONFIG;
pub use errors::prelude::*;
pub use utils::*;