photo-python/trovebox/api/api_base.py
2013-09-02 22:00:15 +01:00

8 lines
139 B
Python

"""
api_base.py: Base class for all API classes
"""
class ApiBase(object):
def __init__(self, client):
self._client = client