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_text;
mod voiceflow_carousel;
mod voiceflow_buttons;
mod voiceflow_card;
mod voiceflow_image;
mod voiceflow_button;
pub(crate) mod traits;
pub mod enums;

#[cfg(feature = "advanced")]
pub use self::{
    voiceflow_buttons::VoiceflowButtons,
    voiceflow_card::VoiceflowCard,
    voiceflow_carousel::VoiceflowCarousel,
    voiceflow_image::VoiceflowImage,
    voiceflow_text::VoiceflowText,
    voiceflow_button::VoiceflowButton
};

#[cfg(not(feature = "advanced"))]
pub(crate) use self::{
    voiceflow_buttons::VoiceflowButtons,
    voiceflow_card::VoiceflowCard,
    voiceflow_carousel::VoiceflowCarousel,
    voiceflow_image::VoiceflowImage,
    voiceflow_text::VoiceflowText,
    voiceflow_button::VoiceflowButton
};