chore: refactor into a RecordingDataManager, lay the ground work for a RenderManager
This commit is contained in:
12
src/render_data.rs
Normal file
12
src/render_data.rs
Normal 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 }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user