mirror of
https://github.com/comit-network/xmr-btc-swap.git
synced 2025-07-27 08:45:39 -04:00
Fix swap/src/bin/swap.rs import issue
This commit is contained in:
parent
3135e58187
commit
c897c4c6e9
3 changed files with 2 additions and 6 deletions
|
@ -1 +0,0 @@
|
||||||
pub mod swap;
|
|
|
@ -11,10 +11,8 @@
|
||||||
#![forbid(unsafe_code)]
|
#![forbid(unsafe_code)]
|
||||||
#![allow(non_snake_case)]
|
#![allow(non_snake_case)]
|
||||||
|
|
||||||
use crate::{
|
use swap::cli::command::{parse_args_and_apply_defaults, ParseResult};
|
||||||
cli::command::{parse_args_and_apply_defaults, ParseResult},
|
use swap::common::check_latest_version;
|
||||||
common::check_latest_version,
|
|
||||||
};
|
|
||||||
use anyhow::Result;
|
use anyhow::Result;
|
||||||
use std::env;
|
use std::env;
|
||||||
|
|
||||||
|
|
|
@ -18,7 +18,6 @@
|
||||||
|
|
||||||
pub mod api;
|
pub mod api;
|
||||||
pub mod asb;
|
pub mod asb;
|
||||||
pub mod bin;
|
|
||||||
pub mod bitcoin;
|
pub mod bitcoin;
|
||||||
pub mod cli;
|
pub mod cli;
|
||||||
pub mod common;
|
pub mod common;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue