From dd7819c8053e9e18b9ee5d9a0f529acfd954d460 Mon Sep 17 00:00:00 2001 From: Titouan Rigoudy Date: Fri, 9 Jul 2021 16:48:42 +0000 Subject: [PATCH] Format client. --- client/src/control/response.rs | 2 +- client/src/control/ws.rs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/client/src/control/response.rs b/client/src/control/response.rs index 3fabb9b..036b3b1 100644 --- a/client/src/control/response.rs +++ b/client/src/control/response.rs @@ -1,5 +1,5 @@ -use solstice_proto::User; use crate::room; +use solstice_proto::User; /// This enumeration is the list of possible control responses from the client /// to the controller. diff --git a/client/src/control/ws.rs b/client/src/control/ws.rs index 2126448..4dc5cdf 100644 --- a/client/src/control/ws.rs +++ b/client/src/control/ws.rs @@ -3,8 +3,8 @@ use std::fmt; use crossbeam_channel; use rustc_serialize::json; -use ws; use solstice_proto::config; +use ws; use super::request::*; use super::response::*;