mod.rs 619 Bytes
Newer Older
1
// Data connector module for response storage and conversation storage
2
3
4
5
6
7
8
//
// Simplified module structure:
// - core.rs: All traits, data types, and errors
// - memory.rs: All in-memory storage implementations
// - noop.rs: All no-op storage implementations
// - oracle.rs: All Oracle ATP storage implementations
// - factory.rs: Storage creation function
9

10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
mod core;
mod factory;
mod memory;
mod noop;
mod oracle;

// Re-export all core types
pub use core::*;

// Re-export factory function
pub use factory::create_storage;
// Re-export all storage implementations
pub use memory::*;
pub use noop::*;
pub use oracle::*;