From 379263b0b2ad13bc387d223498d301869c16d27a Mon Sep 17 00:00:00 2001 From: thePR0M3TH3AN <53631862+PR0M3TH3AN@users.noreply.github.com> Date: Mon, 7 Jul 2025 18:02:38 -0400 Subject: [PATCH] Add KEY_VALUE entry type --- src/password_manager/entry_types.py | 1 + 1 file changed, 1 insertion(+) diff --git a/src/password_manager/entry_types.py b/src/password_manager/entry_types.py index 5108925..24aa9e7 100644 --- a/src/password_manager/entry_types.py +++ b/src/password_manager/entry_types.py @@ -13,3 +13,4 @@ class EntryType(str, Enum): SEED = "seed" PGP = "pgp" NOSTR = "nostr" + KEY_VALUE = "key_value"