summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ick2/client.py4
1 files changed, 4 insertions, 0 deletions
diff --git a/ick2/client.py b/ick2/client.py
index 008cfd7..7d0af57 100644
--- a/ick2/client.py
+++ b/ick2/client.py
@@ -210,6 +210,10 @@ class ControllerClient:
url = self.url(path)
return self._api.get_dict(url)
+ def show_blob(self, path): # pragma: no cover
+ url = self.url(path)
+ return self._api.get_blob(url)
+
def create(self, path, obj): # pragma: no cover
url = self.url(path)
return self._api.post(url, body=obj)