Files
Scheduler/app/Interfaces/BotContract.php
Oskar-Mikael aa27851bd7
All checks were successful
Deploy App / deploy (push) Successful in 10s
Add basecontract
2025-09-04 17:57:15 +02:00

12 lines
207 B
PHP

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