Change return type #5

Merged
phoenix merged 4 commits from change_return_type into main 2026-06-04 21:11:40 -04:00
Showing only changes of commit c9d167da8d - Show all commits
+1 -1
View File
@@ -1,6 +1,6 @@
pub mod types;
pub async fn popp(response: reqwest::Response) -> serde_json::Value {
pub async fn response_to_json(response: reqwest::Response) -> serde_json::Value {
match response.json().await {
Ok(json_body) => {
json_body