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
mod voiceflow_client;
mod response_structures;
mod request_structures;
pub mod dialog_blocks;
mod voiceflow_session;
mod voiceflow_message;
mod voiceflow_block;

#[cfg(feature = "advanced")]
pub use self::{
    voiceflow_session::VoiceflowSession,
    voiceflow_message::VoiceflowMessage,
    voiceflow_block::VoiceflowBlock
};

#[cfg(not(feature = "advanced"))]
pub(crate) use self::{
    voiceflow_session::VoiceflowSession,
    voiceflow_message::VoiceflowMessage,
    voiceflow_block::VoiceflowBlock
};

pub use self::voiceflow_client::VoiceflowClient;
pub use self::request_structures::State;