1
0
mirror of https://github.com/enpaul/kodak.git synced 2025-06-05 22:33:28 +00:00

11 lines
282 B
Python
Raw Normal View History

2021-10-28 19:03:09 -04:00
from fresnel_lens.resources._shared import FresnelResource
from fresnel_lens.resources._shared import ResponseTuple
2021-10-28 19:03:09 -04:00
class Image(FresnelResource):
routes = ("/image/<string:image_name>",)
def get(self, image_name: str) -> ResponseTuple:
raise NotImplementedError