1
0
mirror of https://github.com/enpaul/kodak.git synced 2024-11-14 18:46:50 +00:00
kodak/fresnel_lens/resources/alias.py

11 lines
314 B
Python
Raw Normal View History

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