Files
python-adjutantclient/stacktaskclient/v1/status.py
Dale Smith a5559aef66 Implementing password reset and status endpoints
Change-Id: I92db0f013867db838517c91e0a975296361d234c
2016-01-28 16:03:49 +00:00

10 lines
208 B
Python

from stacktaskclient.openstack.common.apiclient import base
class StatusManager(base.BaseManager):
def get(self):
url = '/status'
body = self.client.get(url).json()
return body