diff options
Diffstat (limited to 'client/src/network.rs')
-rw-r--r-- | client/src/network.rs | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/client/src/network.rs b/client/src/network.rs index 57b637a..73c4ab2 100644 --- a/client/src/network.rs +++ b/client/src/network.rs @@ -14,15 +14,14 @@ You should have received a copy of the GNU Affero General Public License along with this program. If not, see <https://www.gnu.org/licenses/>. */ +use anyhow::Result; +use log::{debug, info, warn}; use std::{ io::{BufReader, BufWriter, Write}, net::TcpStream, sync::mpsc::{Receiver, Sender, channel}, thread::spawn, }; - -use anyhow::Result; -use log::{debug, info, warn}; use weareshared::{helper::ReadWrite, packets::Packet}; pub struct Network { |