mirror of
https://github.com/ThunixdotNet/thunix_api.git
synced 2026-06-15 06:40:17 +00:00
6 lines
141 B
Python
6 lines
141 B
Python
from flask_restful import Resource, abort
|
|
|
|
class Disk(Resource):
|
|
def get(self):
|
|
abort(501, message="Not currently implemented.")
|