mirror of
https://gitlab.com/veloren/veloren.git
synced 2024-08-30 18:12:32 +00:00
993388e56a
Former-commit-id: 7fecffa1dc66fffba4f07d45fb80960dc5178f4f
15 lines
375 B
Rust
15 lines
375 B
Rust
pub mod data;
|
|
//pub mod post;
|
|
pub mod post2;
|
|
|
|
pub use post2 as post;
|
|
|
|
// Reexports
|
|
pub use self::{
|
|
data::{ClientMsg, ServerMsg},
|
|
post::{Error as PostError, PostBox, PostOffice},
|
|
};
|
|
|
|
pub trait PostSend = 'static + serde::Serialize + std::marker::Send + std::fmt::Debug;
|
|
pub trait PostRecv = 'static + serde::de::DeserializeOwned + std::marker::Send + std::fmt::Debug;
|