blob: d2d30d57151ca842152ea46d08f4cd448d22c105 [file] [log] [blame]
use super::prelude::*;
#[derive(Debug)]
pub struct bc;
impl<'a> ParseCommand<'a> for bc {
fn from_packet(buf: PacketBuf<'a>) -> Option<Self> {
if !buf.into_body().is_empty() {
return None;
}
Some(bc)
}
}