lk.zachem.info/app/Modules/Bot/Http/Interfaces/MessengerBotInterface.php
2025-05-23 19:37:45 +08:00

10 lines
171 B
PHP

<?php
namespace App\Modules\Bot\Http\Interfaces;
interface MessengerBotInterface {
public static function sendMessage(string $userBotId, string $message): void;
}