//! Async Rust FastAGI server for the Asterisk Gateway Interface.
//!
//! AGI allows external programs to control Asterisk dialplan execution.
//! This crate provides a FastAGI TCP server that dispatches incoming
//! connections to a user-defined handler.
pub use AgiChannel;
pub use AgiError;
pub use AgiHandler;
pub use AgiRequest;
pub use ;