Making the new pinpoint client.

Signed-off-by: Cliff Hill <Clifford.hill@gsa.gov>
This commit is contained in:
Cliff Hill
2023-12-29 18:11:55 -05:00
parent f92417d81d
commit 3ff6d38660
5 changed files with 14 additions and 3 deletions

View File

@@ -1,3 +1,5 @@
from typing import Protocol
from botocore.config import Config
AWS_CLIENT_CONFIG = Config(
@@ -22,7 +24,7 @@ class ClientException(Exception):
pass
class Client(object):
class Client(Protocol):
"""
Base client for sending notifications.
"""