26 lines
519 B
Rust
Raw Normal View History

use chat_proto::logoschat::encryption::EncryptedPayload;
use crate::conversation::{ChatError, ConversationId, Convo, Id};
2025-12-22 09:40:46 -08:00
#[derive(Debug)]
pub struct GroupTestConvo {}
impl GroupTestConvo {
pub fn new() -> Self {
Self {}
}
}
impl Id for GroupTestConvo {
2025-12-22 09:40:46 -08:00
fn id(&self) -> ConversationId {
// implementation
"grouptest"
}
}
2025-12-22 09:40:46 -08:00
impl Convo for GroupTestConvo {
fn send_message(&mut self, _content: &[u8]) -> Result<Vec<EncryptedPayload>, ChatError> {
Ok(vec![])
2025-12-22 09:40:46 -08:00
}
}