feat: add more options for wallets

This commit is contained in:
2026-06-08 10:25:51 +03:00
parent 6d7df5836a
commit 14df805209
10 changed files with 300 additions and 8 deletions

View File

@@ -14,6 +14,11 @@ from src.application.commands.organization_document_commands import (
ListOrganizationDocumentsCommand,
GetOrganizationDocumentCommand,
)
from src.application.commands.organization_wallet_commands import (
GetOrganizationMnemonicCommand,
GetOrganizationSecretKeysCommand,
ListOrganizationWalletsCommand,
)
from src.application.commands.purchase_request_commands import (
ListPurchaseRequestsCommand,
GetPurchaseRequestCommand,
@@ -38,4 +43,7 @@ __all__ = [
'SetPurchaseRequestQuoteCommand',
'ListOrganizationDocumentsCommand',
'GetOrganizationDocumentCommand',
'ListOrganizationWalletsCommand',
'GetOrganizationMnemonicCommand',
'GetOrganizationSecretKeysCommand',
]