1 2 3 4 5 6 7 8 9 10 11
//! Performs
//! [analysis](https://www.elastic.co/guide/en/elasticsearch/reference/current/analysis.html)
//! on a text string and returns the resulting tokens.
//!
//! <https://www.elastic.co/guide/en/elasticsearch/reference/current/indices-analyze.html#analyze-api-query-params>
mod request;
mod response;
pub use self::request::*;
pub use self::response::*;