reduce spam

This commit is contained in:
Adam 2024-07-16 03:57:10 -04:00
parent eefebcde29
commit 78b68eb026

View file

@ -18,7 +18,7 @@ pub async fn db_build(pool: &SqlitePool) -> Result<(), ServerFnError> {
.execute(pool) .execute(pool)
.await?; .await?;
println!("{:?}", _res); // println!("{:?}", _res);
#[derive(Deserialize)] #[derive(Deserialize)]
struct ArticleFrontmatter { struct ArticleFrontmatter {
@ -66,7 +66,7 @@ pub async fn db_build(pool: &SqlitePool) -> Result<(), ServerFnError> {
.execute(pool) .execute(pool)
.await?; .await?;
println!("{:?}", _res); // println!("{:?}", _res);
} }
} }
} }