slack_rs/lib.rs
1//! Slack CLI library
2//!
3//! Provides core functionality for the Slack CLI:
4//! - API client and call handling
5//! - OAuth authentication and profile management
6//! - Wrapper commands for common operations
7//! - Idempotency store for preventing duplicate writes
8
9pub mod api;
10pub mod auth;
11pub mod cli;
12pub mod commands;
13pub mod debug;
14pub mod idempotency;
15pub mod oauth;
16pub mod profile;
17pub mod skills;