thunix_api/endpoints/disk.py

6 lines
141 B
Python

from flask_restful import Resource, abort
class Disk(Resource):
def get(self):
abort(501, message="Not currently implemented.")