Initial commit

This commit is contained in:
Rayhaan Jaufeerally
2025-04-19 17:13:04 +02:00
commit bea504ea8b
13 changed files with 1913 additions and 0 deletions

8
bin/bgp/Cargo.toml Normal file
View File

@ -0,0 +1,8 @@
[package]
edition.workspace = true
name = "bgp"
version.workspace = true
[dependencies]
eyre.workspace = true
tokio.workspace = true

6
bin/bgp/src/main.rs Normal file
View File

@ -0,0 +1,6 @@
use eyre::Result;
#[tokio::main]
pub async fn main() -> Result<()> {
Ok(())
}