use crate::ports::UserOutput;
pub struct NullOutput;
impl UserOutput for NullOutput {
fn info(&self, _msg: &str) {}
fn warn(&self, _msg: &str) {}
fn error(&self, _msg: &str) {}
fn assistant_text(&self, _text: &str) {}
fn tool_call(&self, _tool_name: &str, _input_preview: &str) {}
fn tool_ok(&self) {}
fn tool_err(&self, _err_msg: &str) {}
}
#[cfg(test)]
mod tests {
use super::*;
#[test]
fn conformance() {
crate::ports::test_contracts::assert_user_output_contract(&NullOutput);
}
}