clawdb 0.1.2

The cognitive database for AI agents — unified memory, semantic retrieval, branching, sync, and governance.
Documentation
1
2
3
4
5
6
7
8
9
10
11
//! Internal event bus and event type definitions for the ClawDB runtime.

pub mod bus;
pub mod emitter;
pub mod subscriber;
pub mod types;

pub use bus::EventBus;
pub use emitter::EventEmitter;
pub use subscriber::EventSubscriber;
pub use types::ClawEvent;