rust/hedgewars-server/src/handlers/checker.rs
author nemo
Thu, 15 Aug 2019 16:07:57 -0400
changeset 15326 136023417164
parent 15120 febccab419b1
child 15804 747278149393
permissions -rw-r--r--
just to make it build against nightly

use log::*;
use mio;

use crate::{
    core::{server::HwServer, types::ClientId},
    protocol::messages::HwProtocolMessage,
};

pub fn handle(_server: &mut HwServer, _client_id: ClientId, message: HwProtocolMessage) {
    match message {
        _ => warn!("Unknown command"),
    }
}