wip tests for chat.rs

This commit is contained in:
Dave
2026-01-27 15:01:47 +00:00
parent 97b0ce1b58
commit c24f44bf51
2 changed files with 713 additions and 258 deletions

File diff suppressed because it is too large Load Diff

View File

@@ -29,8 +29,8 @@ pub trait StoreOps: Send + Sync {
// -----------------------------------------------------------------------------
/// Wrapper for Tauri Store that implements StoreOps
struct TauriStoreWrapper<'a> {
store: &'a tauri_plugin_store::Store<tauri::Wry>,
pub struct TauriStoreWrapper<'a> {
pub store: &'a tauri_plugin_store::Store<tauri::Wry>,
}
impl<'a> StoreOps for TauriStoreWrapper<'a> {