Skip to main content

asterisk_rs_core/
lib.rs

1//! Core types, error framework, and event bus for the asterisk-rs ecosystem.
2
3pub mod auth;
4pub mod config;
5pub mod error;
6pub mod event;
7pub mod types;
8
9pub use error::{Error, Result};