Made Database the mtt engine.

This commit is contained in:
2022-07-18 17:24:45 -04:00
parent dfa96dfc00
commit 620e5593e0
3 changed files with 8 additions and 7 deletions

View File

@@ -4,10 +4,10 @@ use tide::{
Request, Response,
};
mod database;
mod morethantext;
mod settings;
use database::MoreThanText;
use morethantext::MoreThanText;
use settings::Settings;
#[async_std::main]
@@ -20,7 +20,7 @@ async fn main() -> tide::Result<()> {
}
async fn app_setup() -> tide::Server<MoreThanText> {
let db = MoreThanText::new();
let db = MoreThanText::new().await;
let mut app = tide::with_state(db);
app.at("/").get(home);
app.with(