//! Lifecycle function parsing and FFI generation
//!
//! This module handles the three required lifecycle functions:
//! - `new` - Initialize the server state
//! - `reset` - Reset the server state
//! - `new_client` - Register a new client
pub use InitFn;
pub use NewClientFn;
pub use ResetFn;