opencrabs 0.3.13

The autonomous, self-improving AI agent. Single Rust binary. Every channel. Install with: cargo install opencrabs
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
//! Database Layer
//!
//! Provides database connection management, models, and repositories.

mod database;
pub mod models;
pub mod repository;
pub mod retry;

pub use database::{Database, Pool, PoolExt, db_integrity_failed, global_pool, interact_err};
pub use models::*;
pub use repository::*;
pub use retry::{DbRetryConfig, retry_db_anyhow, retry_db_operation, retry_db_rusqlite};