From fb5666065b49c486a3fbb0f8e8f7db64a13616fe Mon Sep 17 00:00:00 2001 From: kaichaosun Date: Thu, 26 Mar 2026 08:32:47 +0800 Subject: [PATCH] refactor: remove put crate for identity types --- core/conversations/src/storage.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/conversations/src/storage.rs b/core/conversations/src/storage.rs index 6cc988c..c0130a2 100644 --- a/core/conversations/src/storage.rs +++ b/core/conversations/src/storage.rs @@ -1,7 +1,7 @@ //! Chat-specific storage implementation. mod migrations; -pub(crate) mod types; +mod types; use storage::{RusqliteError, SqliteDb, StorageConfig, StorageError, params}; use zeroize::Zeroize;