From d722e9b374dce358aeb9deb7298284fb07b1a5f5 Mon Sep 17 00:00:00 2001 From: troido Date: Sun, 23 Feb 2020 11:28:00 +0100 Subject: more consistent imports --- src/gameserver.rs | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) (limited to 'src/gameserver.rs') diff --git a/src/gameserver.rs b/src/gameserver.rs index ebfbe0e..9778275 100644 --- a/src/gameserver.rs +++ b/src/gameserver.rs @@ -5,9 +5,11 @@ use std::io; use serde_json::{Value, json}; -use super::controls::{Control, Action}; -use super::server::Server; -use crate::PlayerId; +use crate::{ + controls::{Control, Action}, + server::Server, + PlayerId +}; #[derive(Debug)] -- cgit