This commit is contained in:
open-trade
2021-03-19 18:19:24 +08:00
parent cd241958a2
commit 474b8abf18
5 changed files with 26 additions and 12 deletions

View File

@@ -17,6 +17,6 @@ fn main() -> ResultType<()> {
.args_from_usage(&args)
.get_matches();
let stop: Arc<Mutex<bool>> = Default::default();
start(matches.value_of("port").unwrap_or(DEFAULT_PORT), stop)?;
start(matches.value_of("port").unwrap_or(DEFAULT_PORT), "", stop)?;
Ok(())
}