1pub mod logging;
23use crate::socket::{NautSocket, SocketType};
45/// Allows you to isolate specific functionality into different plugins
6pub trait SocketPlugin<'socket, S: SocketType<'socket>> {
7fn register(&self, socket: &mut NautSocket<'socket, S>);
8}