premix_orm/lib.rs
1//! Premix ORM Re-exports
2//!
3//! This crate serves as a "facade" to simplify imports for Premix ORM users.
4//! Instead of depending on `premix-core` and `premix-macros` separately,
5//! you can just depend on `premix` and importing everything from here.
6
7pub use premix_core::*;
8pub use premix_macros::Model;