Skip to main content

this_me/db/
mod.rs

1// this.me/src/db/mod.rs
2// by suiGn
3#[cfg(feature = "pg")]
4pub mod pg;
5#[cfg(feature = "sqlite")]
6pub mod migrate_schema;
7#[cfg(feature = "sqlite")]
8pub mod db;
9#[cfg(feature = "sqlite")]
10pub use db::connect;