gui(installer): add module for node step

This commit is contained in:
Michael Mallan 2024-08-28 11:31:12 +01:00
parent f74f071b8a
commit ef44cf329a
No known key found for this signature in database
GPG Key ID: 5177CDCEDB0EABEB
3 changed files with 3 additions and 2 deletions

View File

@ -1,10 +1,10 @@
mod backend;
mod bitcoind;
mod descriptor;
mod mnemonic;
mod node;
mod share_xpubs;
pub use bitcoind::{
pub use node::bitcoind::{
DefineBitcoind, DownloadState, InstallState, InternalBitcoindStep, SelectBitcoindTypeStep,
};

View File

@ -0,0 +1 @@
pub mod bitcoind;