chore: refactor into a RecordingDataManager, lay the ground work for a RenderManager

This commit is contained in:
2026-05-27 01:28:47 -04:00
parent f86c094dda
commit e72633f26a
22 changed files with 830 additions and 49 deletions

12
src/render_data.rs Normal file
View File

@@ -0,0 +1,12 @@
use opendal::Operator;
#[derive(Debug, Clone)]
pub struct RenderDataManager {
operator: Operator,
}
impl RenderDataManager {
pub fn new(operator: Operator) -> Self {
Self { operator }
}
}