dprint_plugin_sql/
lib.rs

1pub mod configuration;
2mod format_text;
3
4pub use format_text::format_text;
5
6#[cfg(feature = "wasm")]
7#[cfg(all(target_arch = "wasm32", target_os = "unknown"))]
8mod wasm_plugin;
9
10#[cfg(feature = "wasm")]
11#[cfg(all(target_arch = "wasm32", target_os = "unknown"))]
12pub use wasm_plugin::*;