summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xeffiapi8
1 files changed, 0 insertions, 8 deletions
diff --git a/effiapi b/effiapi
index 154d198..e8a4cf7 100755
--- a/effiapi
+++ b/effiapi
@@ -186,11 +186,6 @@ class API:
routes = [
{
'method': 'GET',
- 'path': '/hello',
- 'callback': self._call(self._show_hello),
- },
- {
- 'method': 'GET',
'path': '/status',
'callback': self._call(self._show_status),
},
@@ -244,9 +239,6 @@ class API:
return None
return w[1]
- def _show_hello(self):
- return response(200, None, {"greeting": "hello, world\n"})
-
def _show_status(self):
status = self._muck.status()
return response(200, None, status)