rust/hedgewars-server/src/handlers/checker.rs
author Wuzzy <Wuzzy2@mail.ru>
Sun, 16 Jun 2019 13:55:32 +0200
changeset 15165 a251d8757e8c
parent 15120 febccab419b1
child 15804 747278149393
permissions -rw-r--r--
ACF5: Disable inappropriate "boring" taunt at the end

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