slack-rs 0.1.70

A Slack CLI tool with OAuth authentication, profile management, and API access
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
//! Slack CLI library
//!
//! Provides core functionality for the Slack CLI:
//! - API client and call handling
//! - OAuth authentication and profile management
//! - Wrapper commands for common operations
//! - Idempotency store for preventing duplicate writes

pub mod api;
pub mod auth;
pub mod cli;
pub mod commands;
pub mod debug;
pub mod idempotency;
pub mod oauth;
pub mod profile;
pub mod skills;