Fix sidFPS not being properly right-aligned (again!)
FPS display worked before, but it was accidentally un-done in bcecb3349948e2e00d3f2ee0c6497a24676a4efb.
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"),
}
}