feat(core): add CredentialStore trait, InMemoryCredentialStore, EncryptedData mirror, StoreError (core/credential-store-trait)

This commit is contained in:
2026-06-28 21:27:41 +00:00
parent df355c53a9
commit d66616c09b
3 changed files with 207 additions and 0 deletions

View File

@@ -9,4 +9,7 @@
pub mod auth;
pub mod config;
pub mod endpoint;
pub mod store;
pub mod types;
pub use store::{CredentialStore, EncryptedData, InMemoryCredentialStore, StoreError};