//! Database connector implementations for `Postgres` and `MySQL`.
//!
//! These connectors use `sqlx` internally with a `tokio::runtime::Runtime`
//! to provide a synchronous `PullStream` interface compatible with the
//! `Connector` trait.
pub use MysqlConnector;
pub use PostgresConnector;