stringqb/src/lib.rs

9 lines
184 B
Rust
Raw Normal View History

2019-04-02 16:35:52 -04:00
//! # StringQB
//!
//! A query builder using mostly strings, with methods following common SQL syntax
2019-04-04 16:39:05 -04:00
// #![warn(missing_docs)]
2019-04-02 16:35:52 -04:00
pub mod drivers;
pub mod query_builder;
pub mod types;