mirror of
https://github.com/GSA/notifications-api.git
synced 2026-01-11 05:01:12 -05:00
18 lines
333 B
Python
18 lines
333 B
Python
from app.clients import (Client, ClientException)
|
|
|
|
|
|
class SmsClientException(ClientException):
|
|
'''
|
|
Base Exception for SmsClients
|
|
'''
|
|
pass
|
|
|
|
|
|
class SmsClient(Client):
|
|
'''
|
|
Base Sms client for sending smss.
|
|
'''
|
|
|
|
def send_sms(self, *args, **kwargs):
|
|
raise NotImplemented('TODO Need to implement.')
|