Is it possible to use status codes with `oasgen` and have it automatically generate the appropriate openapi attributes? ```rust async fn create_foo(Json(payload): Json<Foo>) -> impl IntoResponse { ... (StatusCode::CREATED, Json(payload)) } ```
Is it possible to use status codes with
oasgenand have it automatically generate the appropriate openapi attributes?