clankerdiff_protocol/client/
transport.rs1use crate::{
2 server::{ServerEvent, ServerMessage},
3 shared::LocalEnd,
4};
5
6use super::ClientCommand;
7
8pub type LocalClientTransport = LocalEnd<ClientCommand, ServerEvent>;
9pub type LocalClientMessageTransport = LocalEnd<ClientCommand, ServerMessage>;