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

11 lines
282 B
Python

from fresnel_lens.resources._shared import FresnelResource
from fresnel_lens.resources._shared import ResponseTuple
class Image(FresnelResource):
routes = ("/image/<string:image_name>",)
def get(self, image_name: str) -> ResponseTuple:
raise NotImplementedError