migra/migra-cli/src/database/clients/mod.rs

14 lines
218 B
Rust
Raw Normal View History

2021-03-26 02:10:41 +03:00
cfg_if! {
if #[cfg(feature = "postgres")] {
mod postgres;
pub use self::postgres::*;
}
}
2021-02-23 18:44:37 +03:00
2021-03-26 02:10:41 +03:00
cfg_if! {
if #[cfg(feature = "mysql")] {
mod mysql;
pub use self::mysql::*;
}
}