1
2
3
4
5
6
7
8
9
10
11
12
#![cfg_attr(docsrs, doc = include_str!("../docs/index.md"))]
#![cfg_attr(docsrs, feature(doc_cfg))]
pub use include_sql::include_sql;
pub mod util;
#[cfg(feature = "tokio")]
pub mod async_await;
#[cfg(not(feature = "tokio"))]
pub mod sync;