<?php
namespace App\Services\OtpSender;
interface OtpSenderInterface
{
public function sendWhatsApp(string $phoneE164, string $message): void;
}