#![doc = include_str!("../README.md")]
mod comp_op;
mod db_field;
mod error;
mod sql_term;
mod suchbar;
#[macro_use]
extern crate pest_derive;
pub use crate::db_field::{DbField, DbType};
pub use crate::error::SuchError;
pub use crate::suchbar::{SuchOptions, Suchbar, WhereClause};