//! Veza Common Library //! //! This library provides common types and utilities shared across //! all Veza services (backend, frontend, chat-server, stream-server). pub mod types; pub mod utils; pub mod error; pub mod config; pub mod auth; #[path = "config_rust.rs"] pub mod config_rust; pub mod logging; pub mod metrics; pub mod traits; pub use types::*; pub use error::{CommonError, CommonResult, ErrorResponse}; pub use error::server::{VezaError, VezaResult}; pub use config::*;