swiftide_query/lib.rs
1// show feature flags in the generated documentation
2// https://doc.rust-lang.org/rustdoc/unstable-features.html#extensions-to-the-doc-attribute
3#![cfg_attr(docsrs, feature(doc_cfg))]
4#![cfg_attr(docsrs, feature(doc_auto_cfg))]
5#![doc(html_logo_url = "https://github.com/bosun-ai/swiftide/raw/master/images/logo.png")]
6
7pub mod answers;
8mod query;
9pub mod query_transformers;
10pub mod response_transformers;
11
12pub use query::*;
13pub mod evaluators;