Files
Scheduler/app/Bots/BotContract.php
2025-08-30 16:11:06 +02:00

10 lines
137 B
PHP

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