25 lines
541 B
Python
25 lines
541 B
Python
"""voip.ms SMS/MMS API façade.
|
|
|
|
Exposes the typed client and settings for direct import, plus the FastAPI
|
|
app for serving the same operations over HTTP.
|
|
"""
|
|
|
|
from .client import VoipMsSMSClient
|
|
from .config import Settings
|
|
from .exceptions import (
|
|
VoipMsApiError,
|
|
VoipMsAuthError,
|
|
VoipMsError,
|
|
VoipMsRateLimitError,
|
|
)
|
|
from .guard import DailySendCounter
|
|
|
|
__all__ = [
|
|
"VoipMsSMSClient",
|
|
"Settings",
|
|
"DailySendCounter",
|
|
"VoipMsError",
|
|
"VoipMsAuthError",
|
|
"VoipMsApiError",
|
|
"VoipMsRateLimitError",
|
|
] |