Restructured how clients are implemented.

Signed-off-by: Cliff Hill <Clifford.hill@gsa.gov>
This commit is contained in:
Cliff Hill
2024-01-04 09:00:41 -05:00
parent 3ff6d38660
commit d714ebcd5d
5 changed files with 19 additions and 12 deletions

View File

@@ -10,6 +10,12 @@ def fake_client(notify_api):
def name(self):
return "fake"
def init_app(self, current_app, *args, **kwargs):
pass
def send_sms(self, *args, **kwargs):
pass
fake_client = FakeSmsClient()
# fake_client.init_app(notify_api)
return fake_client