mirror of
https://github.com/YGGverse/ggemini.git
synced 2026-03-31 17:15:31 +00:00
7 lines
258 B
Rust
7 lines
258 B
Rust
//! Gemini response could have different MIME type for data.
|
|
//! 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;
|