simploxide_client/prelude.rs
1//! Re-exports everything that is needed to send commands, match events and destructure responses
2
3pub use crate::types::{
4 AddressSettings, CIContent, CIDeleteMode, ChatDeleteMode, ChatInfo, ChatRef, ChatType,
5 ComposedMessage, CreatedConnLink, GroupMemberRole, GroupProfile, MsgContent, MsgReaction,
6 NewUser, Preferences, Profile, UpdatedMessage, User, UserInfo,
7};
8pub use crate::{
9 ClientApi as _, ClientError, ClientResult, client_api::*, commands::*, events::*, responses::*,
10};