12 lines
207 B
PHP
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;
|
|
}
|