Files
Scheduler/app/Bots/BotContract.php
Oskar-Mikael 1565df568d
All checks were successful
Deploy App / deploy (push) Successful in 11s
Fix job dispatch and show log output
2025-09-04 17:38:30 +02:00

12 lines
180 B
PHP

<?php
namespace App\Bots;
use Illuminate\Http\JsonResponse;
interface BotContract
{
public function run(): JsonResponse;
public static function configSchema(): array;
}