mirror of
https://github.com/tokio-rs/axum.git
synced 2026-08-31 00:00:10 +02:00
12 lines
251 B
Rust
12 lines
251 B
Rust
//! Additional types for generating responses.
|
|
|
|
#[cfg(feature = "erased-json")]
|
|
mod erased_json;
|
|
|
|
#[cfg(feature = "erased-json")]
|
|
pub use erased_json::ErasedJson;
|
|
|
|
#[cfg(feature = "json-lines")]
|
|
#[doc(no_inline)]
|
|
pub use crate::json_lines::JsonLines;
|