summaryrefslogtreecommitdiff
path: root/opendc/api/v2/schedulers/endpoint.py
diff options
context:
space:
mode:
Diffstat (limited to 'opendc/api/v2/schedulers/endpoint.py')
-rw-r--r--opendc/api/v2/schedulers/endpoint.py10
1 files changed, 0 insertions, 10 deletions
diff --git a/opendc/api/v2/schedulers/endpoint.py b/opendc/api/v2/schedulers/endpoint.py
deleted file mode 100644
index 0bbc3322..00000000
--- a/opendc/api/v2/schedulers/endpoint.py
+++ /dev/null
@@ -1,10 +0,0 @@
-from opendc.util.rest import Response
-
-
-SCHEDULERS = ['DEFAULT']
-
-
-def GET(_):
- """Get all available Schedulers."""
-
- return Response(200, 'Successfully retrieved Schedulers.', [{'name': name} for name in SCHEDULERS])