Commit a1517ec7 by adamtorok

Storage manager added

parent 3a162b27
class StorageManager:
def __init__(self) -> None:
super().__init__()
def create(self, size, bootable):
raise NotImplementedError
def get(self, id):
raise NotImplementedError
def delete(self, id):
raise NotImplementedError
def list(self):
raise NotImplementedError
def resize(self, id):
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