Remove embedded demos

This commit is contained in:
thePR0M3TH3AN
2025-06-30 12:14:05 -04:00
parent f6d7a3b133
commit 95adfb45d9
4 changed files with 40 additions and 72 deletions

View File

@@ -0,0 +1,13 @@
from password_manager.manager import PasswordManager
from nostr.client import NostrClient
def main() -> None:
"""Show how to initialise PasswordManager with Nostr support."""
manager = PasswordManager()
manager.nostr_client = NostrClient(encryption_manager=manager.encryption_manager)
# Sample actions could be called on ``manager`` here.
if __name__ == "__main__":
main()