Added isolang as a message field.

This commit is contained in:
2025-05-20 12:56:59 -04:00
parent ac0df7ae1f
commit 2c9b08c77d
4 changed files with 108 additions and 1 deletions

View File

@@ -11,6 +11,27 @@ use std::{
const RESPONDS_TO: [MsgType; 1] = [MsgType::DocumentRequest];
struct Table;
impl Table {
fn new() -> Self {
Self {}
}
fn add_column(&self) {}
}
#[cfg(test)]
mod tables {
use super::*;
#[test]
fn create_table() {
let tbl = Table::new();
tbl.add_column();
}
}
pub struct Document {
data: HashMap<String, String>,
queue: Queue,