(rows: Vec<serde_json::Value>)
| 61 | |
| 62 | impl HttpQueryResponse { |
| 63 | pub fn ok(rows: Vec<serde_json::Value>) -> Self { |
| 64 | Self { |
| 65 | status: Cow::Borrowed("ok"), |
| 66 | rows, |
| 67 | } |
| 68 | } |
| 69 | } |
| 70 | |
| 71 | /// `POST /v1/auth/exchange-key` success response. |
no outgoing calls
no test coverage detected