Obj str do it #255

Merged
phoenix merged 91 commits from obj_str-do_it into main 2026-08-08 14:29:15 -04:00
Showing only changes of commit a05dae25d7 - Show all commits
+4
View File
@@ -216,9 +216,13 @@ pub mod endpoint {
Err(err) => match err {
labyrinth::Error::Info(err_str) => {
eprintln!("Error: {:?}", err_str);
response.message = err_str.to_string();
return (axum::http::StatusCode::INTERNAL_SERVER_ERROR, axum::Json(response));
}
labyrinth::Error::SError(err_s) => {
eprintln!("Error: {:?}", err_s);
response.message = err_s.to_string();
return (axum::http::StatusCode::INTERNAL_SERVER_ERROR, axum::Json(response));
}
},
}