local file system

This commit is contained in:
2026-05-09 14:17:25 +02:00
parent 0d3c2c937d
commit b0ce316c30
5 changed files with 128 additions and 57 deletions

View File

@@ -25,8 +25,8 @@ impl PosterStorageAdapter {
Self { store }
}
pub fn from_config(config: StorageConfig) -> anyhow::Result<Self> {
Ok(Self::new(config.build_store()?))
pub fn from_config(config: StorageConfig) -> Self {
Self::new(config.build_store())
}
}