Initial work

This commit is contained in:
2025-08-30 16:11:06 +02:00
parent 4e5f154492
commit 774d1cf45f
41 changed files with 1217 additions and 281 deletions

9
app/Bots/BotContract.php Normal file
View File

@@ -0,0 +1,9 @@
<?php
namespace App\Bots;
interface BotContract
{
public function run(): void;
public static function configSchema(): array;
}