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
mod bot_handler;
mod server_client;
#[cfg(all(not(feature = "advanced"), any(
    feature = "telegram",
    feature = "whatsapp",
    feature = "discord_unimplemented"
)))]
mod utils;

#[cfg(feature = "advanced")]
pub mod utils;

pub use self::bot_handler::BotHandler;
pub use self::server_client::ServerClient;