Fix job dispatch and show log output
All checks were successful
Deploy App / deploy (push) Successful in 11s

This commit is contained in:
2025-09-04 17:38:30 +02:00
parent 6a72b7150b
commit 1565df568d
7 changed files with 45 additions and 15 deletions

View File

@@ -2,8 +2,10 @@
namespace App\Bots;
use Illuminate\Http\JsonResponse;
interface BotContract
{
public function run(): void;
public function run(): JsonResponse;
public static function configSchema(): array;
}