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