summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLars Wirzenius <liw@liw.fi>2019-01-05 21:33:04 +0200
committerLars Wirzenius <liw@liw.fi>2019-01-05 21:33:04 +0200
commit7f0b830f7a81622c6bb212f4231e1c5db0b61dab (patch)
tree6e9320a73a3f3ba5ec034e7f1d0eafe7d96c8576
parent2697e6bc739962743270610770e7ef4fae34e678 (diff)
downloadeffi-reg-7f0b830f7a81622c6bb212f4231e1c5db0b61dab.tar.gz
Revert "Test: add /hello to test CI/CD"
This reverts commit 2697e6bc739962743270610770e7ef4fae34e678.
-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)