Skip to main content

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
8pub mod api;
9pub mod auth;
10pub mod cli;
11pub mod commands;
12pub mod debug;
13pub mod oauth;
14pub mod profile;