slack_morphism_models/
lib.rs

1//! # Slack Morphism models for Rust
2//! This library contains pure models definitions to use with client and async module implementation.
3//! Please follow to the official website: https://slack-rust.abdolence.dev for details.
4
5// These warnings disabled mostly since it is important to replicate original models from Slack as is
6// (not for 100% cases though).
7// For example: some of the original models contains more fields then recommended for one model.
8#![allow(clippy::large_enum_variant, clippy::too_many_arguments)]
9
10mod common;
11
12pub mod apps;
13pub mod blocks;
14pub mod events;
15pub mod files;
16mod messages;
17pub mod socket_mode;
18
19pub use apps::*;
20pub use common::*;
21pub use files::*;
22pub use messages::*;