rust/hedgewars-server/src/handlers/checker.rs
author Grigory Ustinov <grenka@altlinux.org>
Sat, 28 Sep 2019 16:39:02 +0300
changeset 15476 c81b6aaecced
parent 15120 febccab419b1
child 15804 747278149393
permissions -rw-r--r--
Little fix of reference points in russian translation of ru.txt

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"),
    }
}