diff options
Diffstat (limited to 'opendc/api/v1/specifications/gpus/endpoint.py')
| -rw-r--r-- | opendc/api/v1/specifications/gpus/endpoint.py | 18 |
1 files changed, 0 insertions, 18 deletions
diff --git a/opendc/api/v1/specifications/gpus/endpoint.py b/opendc/api/v1/specifications/gpus/endpoint.py deleted file mode 100644 index 5676f62b..00000000 --- a/opendc/api/v1/specifications/gpus/endpoint.py +++ /dev/null @@ -1,18 +0,0 @@ -from opendc.models.gpu import GPU -from opendc.util.rest import Response - - -def GET(request): - """Get a list of the specifications of all GPUs.""" - - # Get the GPUs - - gpus = GPU.query() - - # Return the GPUs - - return Response( - 200, - 'Successfully retrieved GPUs.', - [x.to_JSON() for x in gpus] - ) |
