morethantext-web/src/morethantext/mod.rs

37 lines
468 B
Rust
Raw Normal View History

2022-07-18 17:24:45 -04:00
#[derive(Clone)]
pub struct MoreThanText;
2022-07-18 17:24:45 -04:00
impl MoreThanText {
pub async fn new() -> Self {
Self {}
}
}
2022-08-05 16:47:01 -04:00
struct Table;
impl Table {
async fn new() -> Self {
Self {}
}
}
#[cfg(test)]
mod database {
use super::*;
#[async_std::test]
async fn create() {
2022-07-18 17:24:45 -04:00
MoreThanText::new().await;
}
}
2022-08-05 16:47:01 -04:00
#[cfg(test)]
mod table {
use super::*;
#[async_std::test]
async fn create() {
Table::new().await;
}
}