wb_cache/test/simulation/db/
entity.rs1pub mod customer;
8pub mod inventory_record;
9pub mod order;
10pub mod product;
11pub mod session;
12
13pub use customer::Entity as Customers;
14pub use customer::Manager as CustomerMgr;
15pub use customer::Model as Customer;
16pub use inventory_record::Entity as InventoryRecords;
17pub use inventory_record::Manager as InventoryRecordMgr;
18pub use inventory_record::Model as InventoryRecord;
19pub use order::Entity as Orders;
20pub use order::Manager as OrderMgr;
21pub use order::Model as Order;
22pub use product::Entity as Products;
23pub use product::Manager as ProductMgr;
24pub use product::Model as Product;
25pub use session::Entity as Sessions;
26pub use session::Manager as SessionMgr;
27pub use session::Model as Session;
28
29use crate::test::simulation::types::simerr;
30use crate::test::simulation::types::SimErrorAny;
31
32#[inline(always)]
36pub(crate) fn dbcp_gone(who: &str) -> SimErrorAny {
37 simerr!("({who}) Database Provider object (parent) is gone")
38}