veza/veza-common/src/lib.rs

15 lines
327 B
Rust
Raw Normal View History

2025-12-03 21:24:14 +00:00
//! 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::*;