(&self)
| 13 | } |
| 14 | |
| 15 | pub async fn load_all(&self) -> Result<Vec<HistoryEntry>> { |
| 16 | streaming::read_jsonl(self.config.history_file()).await |
| 17 | } |
| 18 | |
| 19 | pub async fn load_raw(&self) -> Result<Vec<serde_json::Value>> { |
| 20 | streaming::read_jsonl_raw(self.config.history_file()).await |
no test coverage detected