mirror of
https://github.com/comit-network/xmr-btc-swap.git
synced 2024-12-25 15:39:25 -05:00
Move cli specific modules under cli folder
nectar will also have its own folder with a separate config.
This commit is contained in:
parent
901c9e89c9
commit
7805a6d684
@ -19,10 +19,12 @@ use std::{path::PathBuf, sync::Arc};
|
||||
use structopt::StructOpt;
|
||||
use swap::{
|
||||
bitcoin,
|
||||
cli::{
|
||||
command::{Arguments, Cancel, Command, Refund, Resume},
|
||||
config::{
|
||||
initial_setup, query_user_for_initial_testnet_config, read_config, ConfigNotInitialized,
|
||||
},
|
||||
},
|
||||
database::Database,
|
||||
execution_params,
|
||||
execution_params::GetExecutionParams,
|
||||
|
2
swap/src/cli.rs
Normal file
2
swap/src/cli.rs
Normal file
@ -0,0 +1,2 @@
|
||||
pub mod command;
|
||||
pub mod config;
|
@ -17,8 +17,7 @@
|
||||
)]
|
||||
|
||||
pub mod bitcoin;
|
||||
pub mod command;
|
||||
pub mod config;
|
||||
pub mod cli;
|
||||
pub mod database;
|
||||
pub mod execution_params;
|
||||
pub mod fs;
|
||||
|
Loading…
Reference in New Issue
Block a user