feat(provider-integrations): move ProviderOnline endpoints to new module

This commit is contained in:
2026-05-15 11:41:35 +07:00
parent 8cd1385a21
commit 2aca3693f3
10 changed files with 419 additions and 191 deletions

View File

@@ -0,0 +1,7 @@
<?php
Route::prefix('providerintegrations')->group(function () {
Route::get('/', function () {
return response()->json(['module' => 'ProviderIntegrations']);
});
});