-
Notifications
You must be signed in to change notification settings - Fork 249
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
WIP: refactor mysql module to flatten its structure
- Loading branch information
Showing
7 changed files
with
11 additions
and
14 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,11 @@ | ||
pub use wasm::common::MysqlUrl; | ||
pub use wasm::error::MysqlError; | ||
//! Wasm-compatible definitions for the MySQL connector. | ||
//! This module is only available with the `mysql` feature. | ||
pub mod error; | ||
pub(crate) mod url; | ||
|
||
#[cfg(feature = "mysql")] | ||
pub(crate) mod wasm; | ||
pub use error::MysqlError; | ||
pub use url::MysqlUrl; | ||
|
||
#[cfg(feature = "mysql-native")] | ||
pub(crate) mod native; | ||
|
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
This file was deleted.
Oops, something went wrong.