Skip to content

Commit

Permalink
Added benchmark operation
Browse files Browse the repository at this point in the history
  • Loading branch information
Emre Çalışkan committed Jan 1, 2024
1 parent 6a236bf commit 55885fb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion routes/api.php
Original file line number Diff line number Diff line change
Expand Up @@ -18,4 +18,4 @@

Route::get('/health-check', fn (Request $request) => Response::noContent())->name('health-check');
Route::get('/static', fn (Request $request) => Response::json(['status' => true]))->name('static');
Route::get('/http-request', fn (Request $request) => Response::json(Http::get('http://127.0.0.1:9800/api')->json()))->name('http-request');
Route::get('/http-request', fn (Request $request) => Response::json(Http::get('http://whoami/api')->json()))->name('http-request');

0 comments on commit 55885fb

Please sign in to comment.