mirror of
https://github.com/RoboSats/taptrade-core.git
synced 2025-08-11 12:30:01 +00:00
15 lines
306 B
Rust
Executable File
15 lines
306 B
Rust
Executable File
mod coordinator;
|
|
mod cli;
|
|
mod communication;
|
|
|
|
use cli::parse_cli_args;
|
|
use communication::webserver;
|
|
|
|
fn main() {
|
|
webserver();
|
|
let mode = parse_cli_args();
|
|
dbg!(mode);
|
|
}
|
|
|
|
// test with cargo run -- trader --maker --endpoint "taptrade-coordinator.com:5432" --electrum "electrum-server.com:50002"
|