soph_server/response/format/
mod.rs

1#[cfg(feature = "response-json")]
2pub use json::Json;
3
4#[cfg(feature = "response-json")]
5mod json;
6
7#[cfg(feature = "response-json")]
8pub fn json() -> Json {
9    Json::default()
10}