morethantext/src/data/mod.rs

21 lines
222 B
Rust
Raw Normal View History

2024-11-10 11:34:50 -05:00
pub mod id;
pub mod record;
2024-11-09 07:56:49 -05:00
2024-11-10 11:34:50 -05:00
struct Table;
2024-11-09 07:56:49 -05:00
2024-11-10 11:34:50 -05:00
impl Table {
fn new() -> Self {
Self {}
2024-11-09 07:56:49 -05:00
}
}
#[cfg(test)]
2024-11-10 11:34:50 -05:00
mod table {
2024-11-09 07:56:49 -05:00
use super::*;
#[test]
2024-11-10 11:34:50 -05:00
fn new_table() {
let tbl = Table::new();
2024-11-09 07:56:49 -05:00
}
}