(path: impl AsRef<Path>)
| 34 | } |
| 35 | |
| 36 | pub async fn read_jsonl_raw(path: impl AsRef<Path>) -> Result<Vec<serde_json::Value>> { |
| 37 | read_jsonl::<serde_json::Value>(path).await |
| 38 | } |
| 39 | |
| 40 | pub async fn read_json<T>(path: impl AsRef<Path>) -> Result<T> |
| 41 | where |
no outgoing calls
no test coverage detected