1
0
mirror of https://github.com/enpaul/kodak.git synced 2025-06-06 23:03:25 +00:00

21 lines
401 B
Python
Raw Normal View History

from imagemonk.resources._shared import ImageMonkResource
class ImageUpload(ImageMonkResource):
route = ("/image/",)
def post(self):
raise NotImplementedError
class Image(ImageMonkResource):
route = ("/image/<string:image_id>.jpg",)
def get(self, image_id: str):
raise NotImplementedError
def delete(self, image_id: str):
raise NotImplementedError