feat: implement cache service with repository and DTO layers

This commit is contained in:
GW_MC
2026-05-28 13:13:58 +00:00
parent aa6496de59
commit bda56b7e7e
5 changed files with 422 additions and 1 deletions

6
src-tauri/src/services/cache/mod.rs vendored Normal file
View File

@@ -0,0 +1,6 @@
mod dto;
mod repo;
mod service;
pub use dto::*;
pub use service::*;