This commit is contained in:
11
bin/bgp/Cargo.toml
Normal file
11
bin/bgp/Cargo.toml
Normal 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
6
bin/bgp/src/main.rs
Normal file
@ -0,0 +1,6 @@
|
||||
use eyre::Result;
|
||||
|
||||
#[tokio::main]
|
||||
pub async fn main() -> Result<()> {
|
||||
Ok(())
|
||||
}
|
||||
Reference in New Issue
Block a user