rustpbx 0.4.6

A SIP PBX implementation in Rust
Documentation
pub mod common;
pub mod config;
pub mod executor;
pub mod provider;
pub mod third_party;
pub mod trace;
pub mod tree_app;

pub use self::tree_app::IvrApp;

pub use self::executor::StepIvrApp;

pub use self::common::execute_action;
pub use self::config::{
    ActionNode, BusinessHours, BusinessHoursSchedule, EntryAction, IvrDefinition, IvrFileConfig,
    MenuEntry, MenuNode, WebhookResponse,
};
pub use self::provider::{
    ActionProvider, ProviderContext, ProviderEvent, RetryConfig, StepProvider, TreeProvider,
};