mod common;
pub mod ucci;
pub mod uci;
pub(crate) use common::parse_uci_style_info_tokens;
pub(crate) use common::{ParsedUciStyleInfo, candidate_from_parsed};
pub trait EngineProtocol {
fn init_command(&self) -> &'static str;
fn handshake_done_token(&self) -> &'static str;
fn protocol_id(&self) -> &'static str;
}