move body component to data::text namespace

This commit is contained in:
yggverse 2024-10-31 05:17:02 +02:00
parent d5cea24891
commit 20270d6b30
6 changed files with 127 additions and 210 deletions

View file

@ -1,6 +1,7 @@
//! Gemini response could have different MIME type for data.
//! Use one of these components to parse response according to content type expected.
//! Use one of components below to parse response according to content type expected.
//!
//! * MIME type could be detected using `client::response::Meta` parser
pub mod text;
pub use text::Text;