kyu-common 0.3.0

Shared error types, IDs, and configuration for the KyuGraph database
Documentation
1
2
3
4
5
6
7
8
9
//! kyu-common: shared types, error taxonomy, IDs.

pub mod config;
pub mod error;
pub mod id;

pub use config::DatabaseConfig;
pub use error::{KyuError, KyuResult};
pub use id::{ColumnId, InternalId, Lsn, PropertyId, TableId, TxnTs};