""" 短信服务接口 """ from abc import ABC, abstractmethod class SmsService(ABC): """短信服务接口""" @abstractmethod def send_verification_code(self, phone: str, code: str) -> bool: """发送验证码短信""" pass @abstractmethod def send_template_sms(self, phone: str, template_id: str, params: dict) -> bool: """发送模板短信""" pass