Compare commits

...

2 Commits

Author SHA1 Message Date
496fce313b Merge pull request 'web route health update' (#3) from dev into test
All checks were successful
continuous-integration/drone/push Build is passing
Reviewed-on: #3
2026-05-13 15:54:29 +03:00
ExtraNetwork
e32948556f web route health update 2026-05-13 15:54:01 +03:00

View File

@@ -65,6 +65,13 @@ $router->get('/bulut/test', function () {
$router->post('test', ['as' => 'Test', 'uses' => 'TestController@test']);
$router->get('/health', function () {
return response()->json([
'status' => 'ok',
'service' => 'api-extranetwork',
'time' => date('Y-m-d H:i:s'),
]);
});
// Swagger / OpenAPI docs (public)
$router->get('docs', function () {