mirror of
https://github.com/GSA/notifications-api.git
synced 2026-02-02 17:31:14 -05:00
notify-152 sms delivery receipts
This commit is contained in:
25
app/clients/cloudwatch/__init__.py
Normal file
25
app/clients/cloudwatch/__init__.py
Normal file
@@ -0,0 +1,25 @@
|
||||
from app.clients import Client, ClientException
|
||||
|
||||
|
||||
class CloudwatchClientResponseException(ClientException):
|
||||
"""
|
||||
Base Exception for SmsClientsResponses
|
||||
"""
|
||||
|
||||
def __init__(self, message):
|
||||
self.message = message
|
||||
|
||||
def __str__(self):
|
||||
return "Message {}".format(self.message)
|
||||
|
||||
|
||||
class CloudwatchClient(Client):
|
||||
"""
|
||||
Base Cloudwatch client for checking sms.
|
||||
"""
|
||||
|
||||
def init_app(self, *args, **kwargs):
|
||||
raise NotImplementedError("TODO Need to implement.")
|
||||
|
||||
def check_sms(self, *args, **kwargs):
|
||||
raise NotImplementedError("TODO Need to implement.")
|
||||
Reference in New Issue
Block a user