(&self)
| 31 | } |
| 32 | |
| 33 | pub(super) async fn runs(&self) -> Vec<crate::run::RunSnapshot> { |
| 34 | self.session.run_store.list().await |
| 35 | } |
| 36 | |
| 37 | pub(super) async fn run_snapshot(&self, run_id: &str) -> Option<crate::run::RunSnapshot> { |
| 38 | self.session.run_store.snapshot(run_id).await |