nodedb-types 0.1.0

Portable type definitions shared between NodeDB Origin and NodeDB-Lite
// SPDX-License-Identifier: Apache-2.0

pub mod collection;
pub mod document;
pub mod edge;
pub mod error;
pub mod id_type;
pub mod node;
pub mod shape;
pub mod tenant;
pub mod vshard;

pub use collection::CollectionId;
pub use document::DocumentId;
pub use edge::{EdgeId, EdgeIdParseError};
pub use error::{ID_MAX_LEN, IdError};
pub use id_type::IdType;
pub use node::NodeId;
pub use shape::ShapeId;
pub use tenant::TenantId;
pub use vshard::VShardId;