chore: rename data managers to just managers

This commit is contained in:
2026-05-28 00:50:20 -04:00
parent b5a56b1273
commit 862a333131
21 changed files with 82 additions and 82 deletions

View File

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