diff options
author | Lizzy Fleckenstein <eliasfleckenstein@web.de> | 2023-02-25 18:55:53 +0100 |
---|---|---|
committer | Lizzy Fleckenstein <eliasfleckenstein@web.de> | 2023-02-25 18:55:53 +0100 |
commit | 89b1fc1d8d4bd886d80af0fe1d492cc877bce022 (patch) | |
tree | dd6ff3b8987752788def5cbcc865979c040b60fb /src/lib.rs | |
parent | e1a5830622b3adf2a868e42e7f2259cb26a8a0f6 (diff) | |
download | mt_rudp-89b1fc1d8d4bd886d80af0fe1d492cc877bce022.tar.xz |
Use channels
Diffstat (limited to 'src/lib.rs')
-rw-r--r-- | src/lib.rs | 6 |
1 files changed, 2 insertions, 4 deletions
@@ -4,13 +4,11 @@ mod client; mod common; mod error; -mod recv; mod send; -mod share; +mod worker; pub use client::*; pub use common::*; pub use error::*; -pub use recv::*; pub use send::*; -pub use share::*; +pub use worker::*; |