apparently the gen_or_get_key logic is for string only keys

changed that and also added an implementation for the trait
This commit is contained in:
2026-07-13 19:19:29 -05:00
parent 6a8abec015
commit 29033259df
5 changed files with 39 additions and 25 deletions
+7
View File
@@ -0,0 +1,7 @@
// This trait will replace the current implementation.
// Right now, the implementation is locked on only SQLite.
// With this trait, we can implement other savers like Postgres, MySQL, etc.
// Or even third party services like Hashicorp Vault, AWS Secrets Manager, etc.
// For now, I'll just get an MVP in place.
pub trait Store {}