veza/veza-common/src/lib.rs
2025-12-03 22:24:14 +01:00

14 lines
327 B
Rust

//! 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 use types::*;
pub use error::{CommonError, CommonResult, ErrorResponse};
pub use config::*;