mirror of
https://github.com/RoboSats/taptrade-core.git
synced 2025-08-01 07:31:41 +00:00
14 lines
293 B
Rust
14 lines
293 B
Rust
mod trader;
|
|
mod coordinator;
|
|
mod cli;
|
|
|
|
use cli::parse_cli_args;
|
|
|
|
fn main() {
|
|
let cli_args = parse_cli_args();
|
|
|
|
}
|
|
|
|
// use clap to parse mode (taker, maker or coordinator), communication endpoint (URL or PID or something else), electrum server
|
|
// https://www.youtube.com/watch?v=Ot3qCA3Iv_8
|