use crate::core::voiceflow::dialog_blocks::{VoiceflowButtons, VoiceflowCard, VoiceflowCarousel, VoiceflowImage, VoiceflowText};
#[derive(Debug, Clone)]
pub enum VoiceflowBlock {
Text(VoiceflowText),
Image(VoiceflowImage),
Buttons(VoiceflowButtons),
Card(VoiceflowCard),
Carousel(VoiceflowCarousel),
End,
}