use super::EngineProtocol;
#[derive(Debug, Clone, Copy, Default)]
pub struct Ucci;
impl EngineProtocol for Ucci {
fn init_command(&self) -> &'static str {
"ucci"
}
fn handshake_done_token(&self) -> &'static str {
"ucciok"
}
fn protocol_id(&self) -> &'static str {
"ucci"
}
}