diff --git a/server/src/db.rs b/server/src/db.rs index a0faa1a..cc01d41 100644 --- a/server/src/db.rs +++ b/server/src/db.rs @@ -18,7 +18,7 @@ pub async fn db_build(pool: &SqlitePool) -> Result<(), ServerFnError> { .execute(pool) .await?; - println!("{:?}", _res); + // println!("{:?}", _res); #[derive(Deserialize)] struct ArticleFrontmatter { @@ -66,7 +66,7 @@ pub async fn db_build(pool: &SqlitePool) -> Result<(), ServerFnError> { .execute(pool) .await?; - println!("{:?}", _res); + // println!("{:?}", _res); } } }