morethantext-web/src/morethantext/mod.rs

19 lines
258 B
Rust

#[derive(Clone)]
pub struct MoreThanText;
impl MoreThanText {
pub async fn new() -> Self {
Self {}
}
}
#[cfg(test)]
mod database {
use super::*;
#[async_std::test]
async fn create() {
MoreThanText::new().await;
}
}