languagetool_rust/api/
mod.rs

1//! Raw bindings to the LanguageTool API v1.1.2.
2//!
3//! The current bindings were generated using the
4//! [HTTP API documentation](https://languagetool.org/http-api/).
5//!
6//! Unfortunately, the LanguageTool API is not as documented as we could
7//! hope, and requests might return undocumented fields. Those are de-serialized
8//! to the `undocumented` field.
9pub mod check;
10pub mod languages;
11pub mod server;
12pub mod words;