voiceflousion 0.3.1

A crate that provides toolkit for Voiceflow AI bots integrations and pre-built functionality for quick integration with popular messengers
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
mod discord_client;
mod discord_responder;
mod discord_update;
mod discord_sender;

#[cfg(feature = "advanced")]
pub use self::{
    discord_sender::DiscordSender
};

#[cfg(not(feature = "advanced"))]
pub(super) use self::{
    discord_sender::DiscordSender
};

pub use self::discord_client::DiscordClient;
pub use self::discord_update::DiscordUpdate;
pub use self::discord_responder::DiscordResponder;