Skip to main content

clankerdiff_protocol/client/
transport.rs

1use 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>;