mirror of
https://github.com/GSA/notifications-api.git
synced 2025-12-25 09:51:42 -05:00
21 lines
414 B
Python
21 lines
414 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.')
|
|
|
|
def get_name(self):
|
|
raise NotImplemented('TODO Need to implement.')
|