Move cli specific modules under cli folder

nectar will also have its own folder with a separate config.
pull/182/head
Franck Royer 3 years ago
parent 901c9e89c9
commit 7805a6d684
No known key found for this signature in database
GPG Key ID: A82ED75A8DFC50A4

@ -19,9 +19,11 @@ use std::{path::PathBuf, sync::Arc};
use structopt::StructOpt;
use swap::{
bitcoin,
command::{Arguments, Cancel, Command, Refund, Resume},
config::{
initial_setup, query_user_for_initial_testnet_config, read_config, ConfigNotInitialized,
cli::{
command::{Arguments, Cancel, Command, Refund, Resume},
config::{
initial_setup, query_user_for_initial_testnet_config, read_config, ConfigNotInitialized,
},
},
database::Database,
execution_params,

@ -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…
Cancel
Save