This repository has been archived on 2025-03-28. You can view files and clone it, but cannot push or open issues or pull requests.

8 lines
176 B
Rust

#[derive(serde::Serialize, serde::Deserialize, Copy, Clone, Debug)]
pub struct RelayedPort {
pub id: usize,
pub port: u16,
}
pub type RemoteConfig = Vec<RelayedPort>;