feat: repository architecture for files crate w. added tests (#498)

This commit is contained in:
Paul Makles
2026-01-25 20:32:22 +00:00
committed by GitHub
parent a1a21252d0
commit 01ded209c6
26 changed files with 1435 additions and 462 deletions

View File

@@ -0,0 +1,7 @@
mod encryption_impl;
mod media_impl;
mod s3_impl;
pub use encryption_impl::EncryptionKey;
pub use media_impl::MediaImpl;
pub use s3_impl::S3Storage;