import cleanup

This commit is contained in:
Adam Ierymenko 2022-11-16 21:48:18 -05:00
parent 6ba9aeaa99
commit 1d23f40226
2 changed files with 2 additions and 4 deletions

View file

@ -4,12 +4,11 @@ mod address;
mod endpoint;
mod event;
mod mac;
mod node;
mod path;
mod peer;
mod rootset;
pub(crate) mod node;
pub mod identity;
pub mod inetaddress;

View file

@ -3,8 +3,7 @@
use std::sync::Arc;
use crate::protocol::PacketBuffer;
use crate::vl1::node::{HostSystem, InnerProtocol, Node, PacketHandlerResult};
use crate::vl1::{Path, Peer};
use crate::vl1::{HostSystem, InnerProtocol, Node, PacketHandlerResult, Path, Peer};
pub trait SwitchInterface: Sync + Send {}