diff options
author | Adam T. Carpenter <atc@53hor.net> | 2020-10-07 09:37:41 -0400 |
---|---|---|
committer | Adam T. Carpenter <atc@53hor.net> | 2020-10-07 09:37:41 -0400 |
commit | 89722ebd6dcdc7067277050a431fbb7b9ea1dcf5 (patch) | |
tree | a23a5029b94e7ddec8d8ecdae0438f353cede71a /dichroism/src/handlers.rs | |
parent | 743ae22168b1fcdf2e1e54bcadbb1bb3fce3370d (diff) | |
download | theglassyladies-89722ebd6dcdc7067277050a431fbb7b9ea1dcf5.tar.xz theglassyladies-89722ebd6dcdc7067277050a431fbb7b9ea1dcf5.zip |
sorted out image repo, error handling
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)) } |