Added additional debug prints
Some checks are pending
Rust / build (push) Waiting to run

This commit is contained in:
Rayhaan Jaufeerally
2024-08-18 08:53:43 +00:00
parent 9b44ab782d
commit a47c1271aa
6 changed files with 60 additions and 3 deletions

View File

@ -8,6 +8,7 @@ rust-version.workspace = true
version.workspace = true
[dependencies]
bgp_packet.workspace = true
bgp_server.workspace = true
clap.workspace = true
eyre.workspace = true

View File

@ -1,3 +1,4 @@
use bgp_packet::constants::AddressFamilyIdentifier;
use clap::{Parser, Subcommand};
use eyre::{bail, Result};
use route_client::southbound_interface::{DummyVerifier, SouthboundInterface};
@ -21,6 +22,8 @@ struct Cli {
route_server: String,
#[clap(subcommand)]
command: Option<Commands>,
#[clap(long = "af")]
address_family: Vec<AddressFamilyIdentifier>,
}
#[derive(Subcommand)]