agent_diva_core/lib.rs
1//! Core types and traits for agent-diva
2//!
3//! This crate provides the foundational types, traits, and utilities
4//! used by all other agent-diva components.
5
6pub mod bus;
7pub mod config;
8pub mod cron;
9pub mod error;
10pub mod error_context;
11pub mod heartbeat;
12pub mod logging;
13pub mod memory;
14pub mod session;
15pub mod soul;
16pub mod utils;
17
18pub use error::{Error, Result};