Skip to content
This repository has been archived by the owner on Mar 25, 2023. It is now read-only.

Commit

Permalink
minor clippy changes
Browse files Browse the repository at this point in the history
  • Loading branch information
Heulitig committed Jun 14, 2022
1 parent e5a13da commit 2d88694
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/commands/serve.rs
Original file line number Diff line number Diff line change
Expand Up @@ -255,7 +255,7 @@ mod controller {
use fpm::library::http;
let response = match http::_get(url).await {
Ok(some_response) => some_response,
Err(e) => panic!("failed to fetch data, error: {}", e)
Err(e) => panic!("failed to fetch data, error: {}", e),
};

match serde_json::from_str(response.as_str()) {
Expand Down

0 comments on commit 2d88694

Please sign in to comment.