19 lines
217 B
Rust
19 lines
217 B
Rust
#[derive(Clone, Debug)]
|
|
pub struct Table;
|
|
|
|
impl Table {
|
|
pub fn new() -> Self {
|
|
Self {}
|
|
}
|
|
}
|
|
|
|
#[cfg(test)]
|
|
mod tables {
|
|
use super::*;
|
|
|
|
#[test]
|
|
fn create_new() {
|
|
Table::new();
|
|
}
|
|
}
|