Added a table structure.

This commit is contained in:
Jeff Baskin 2022-08-05 16:47:01 -04:00
parent 966c4bed2b
commit ac869f8188
1 changed files with 18 additions and 0 deletions

View File

@ -7,6 +7,14 @@ impl MoreThanText {
}
}
struct Table;
impl Table {
async fn new() -> Self {
Self {}
}
}
#[cfg(test)]
mod database {
use super::*;
@ -16,3 +24,13 @@ mod database {
MoreThanText::new().await;
}
}
#[cfg(test)]
mod table {
use super::*;
#[async_std::test]
async fn create() {
Table::new().await;
}
}