mirror of
https://github.com/enpaul/kodak.git
synced 2025-06-03 21:33:25 +00:00
11 lines
296 B
Python
11 lines
296 B
Python
from kodak.resources._shared import KodakResource
|
|
from kodak.resources._shared import ResponseTuple
|
|
|
|
|
|
class ImageAlias(KodakResource):
|
|
|
|
routes = ("/image/<string:image_name>/<string:alias>",)
|
|
|
|
def get(self, image_name: str, alias: str) -> ResponseTuple:
|
|
raise NotImplementedError
|