refactor: remove mnemonic from cdk

This commit is contained in:
thesimplekid
2024-06-18 12:45:51 +01:00
parent c550c14a75
commit 53329997bb
5 changed files with 10 additions and 4 deletions

View File

@@ -3,9 +3,10 @@ use std::str::FromStr;
use std::sync::Arc;
use anyhow::{bail, Result};
use bip39::Mnemonic;
use cdk::cdk_database;
use cdk::cdk_database::WalletDatabase;
use cdk::wallet::Wallet;
use cdk::{cdk_database, Mnemonic};
use cdk_redb::RedbWalletDatabase;
use cdk_sqlite::WalletSQLiteDatabase;
use clap::{Parser, Subcommand};