Skip to main content

platform_http/
responses.rs

1use axum::Json;
2use serde::Serialize;
3
4pub fn json<T>(body: T) -> Json<T>
5where
6    T: Serialize,
7{
8    Json(body)
9}