14 lines
327 B
Rust
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::*;
|
|
|