zoey_storage_sql/lib.rs
1//! ZoeyOS SQL Plugin
2//!
3//! Database adapters for PostgreSQL and SQLite with HIPAA-ready patterns (NOT certified).
4
5#![warn(missing_docs)]
6#![warn(clippy::all)]
7
8// Re-exports
9pub use zoey_core;
10
11pub mod hipaa;
12pub mod postgres;
13pub mod sqlite;
14pub mod vector_search;
15
16// Re-export adapters
17pub use hipaa::{AuditLogEntry, HIPAACompliance, HIPAAConfig};
18pub use postgres::PostgresAdapter;
19pub use sqlite::SqliteAdapter;
20pub use vector_search::VectorSearch;