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 attachment;
7pub mod bus;
8pub mod config;
9pub mod cron;
10pub mod error;
11pub mod error_context;
12pub mod heartbeat;
13pub mod logging;
14pub mod memory;
15pub mod security;
16pub mod session;
17pub mod soul;
18pub mod utils;
19
20pub use attachment::FileAttachment;
21pub use error::{Error, Result};