Files
notifications-api/app/clients/__init__.py

14 lines
208 B
Python
Raw Normal View History

class ClientException(Exception):
'''
Base Exceptions for sending notifications that fail
'''
pass
class Client(object):
'''
Base client for sending notifications.
'''
pass