Initial commit

This commit is contained in:
2022-08-30 09:43:53 +02:00
commit 2441552165
11 changed files with 1405 additions and 0 deletions

7
base/Cargo.toml Normal file
View File

@ -0,0 +1,7 @@
[package]
name = "base"
version = "0.1.0"
edition = "2021"
[dependencies]
serde = { version = "1.0.144", features = ["derive"] }

5
base/src/lib.rs Normal file
View File

@ -0,0 +1,5 @@
#[derive(serde::Serialize, serde::Deserialize)]
pub struct RelayedPort {
pub id: u64,
pub port: u16,
}