Commit e633cb2a by adamtorok

ImageManager added

parent c0679dd2
class ImageManager:
def __init__(self) -> None:
super().__init__()
def upload_file(self, path):
raise NotImplementedError
def delete(self, id):
raise NotImplementedError
def get(self, id):
raise NotImplementedError
def list(self):
raise NotImplementedError
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment