Create API base class

This commit is contained in:
sneakypete81 2013-09-02 22:00:15 +01:00
parent 6293a81d39
commit 0f6cbd58e0
5 changed files with 19 additions and 28 deletions

8
trovebox/api/api_base.py Normal file
View file

@ -0,0 +1,8 @@
"""
api_base.py: Base class for all API classes
"""
class ApiBase(object):
def __init__(self, client):
self._client = client