Start of major rewrite/cleanup.
Some checks are pending
Rust / build (push) Waiting to run

This commit is contained in:
Rayhaan Jaufeerally
2025-04-19 18:19:37 +02:00
12 changed files with 1913 additions and 124 deletions

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

@ -0,0 +1,11 @@
[package]
description = "A Border Gateway Protocol implementation"
edition.workspace = true
homepage.workspace = true
license.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(())
}