diff options
Diffstat (limited to 'dichroism/src/handlers.rs')
-rw-r--r-- | dichroism/src/handlers.rs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/dichroism/src/handlers.rs b/dichroism/src/handlers.rs index e4ea6a0..0e2b2c3 100644 --- a/dichroism/src/handlers.rs +++ b/dichroism/src/handlers.rs @@ -19,6 +19,7 @@ async fn get_images(pool: web::Data<DbPool>) -> Result<HttpResponse, Error> { eprintln!("{}", e); HttpResponse::InternalServerError().finish() })?; + dbg!(&images); Ok(HttpResponse::Ok().json(images)) } |