burncloud-database-client 0.1.1

High-level database client with migrations, pooling, and AI model management for BurnCloud
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
pub mod client;
pub mod factory;
pub mod pool;
pub mod repository;
pub mod burncloud_repositories;
pub mod migration;
pub mod burncloud_manager;

pub use client::*;
pub use factory::*;
pub use pool::*;
pub use repository::*;
pub use burncloud_repositories::*;
pub use migration::*;
pub use burncloud_manager::*;

pub use burncloud_database_core::*;