28 lines
570 B
Rust
Raw Normal View History

2025-12-22 09:40:46 -08:00
use crate::conversation::{ChatError, ConversationId, Convo};
#[derive(Debug)]
pub struct GroupTestConvo {}
impl GroupTestConvo {
pub fn new() -> Self {
Self {}
}
}
impl Convo for GroupTestConvo {
fn id(&self) -> ConversationId {
// implementation
"grouptest"
}
fn send_frame(&mut self, _message: &[u8]) -> Result<(), ChatError> {
// todo!("Not Implemented")
Ok(())
}
fn handle_frame(&mut self, _message: &[u8]) -> Result<(), ChatError> {
// todo!("Not Implemented")
Ok(())
}
}