lib_client_slack/
lib.rs

1//! Slack API client library for ADI.
2
3pub use auth::{AuthStrategy, BotTokenAuth};
4pub use blocks::*;
5pub use client::{Client, ClientBuilder};
6pub use error::{Error, Result};
7pub use types::*;
8
9mod auth;
10mod blocks;
11mod client;
12mod error;
13mod types;